Posts

Es werden Posts vom September, 2015 angezeigt.

gradle: use oracle thin client jdbc in database plugin..

buildscript {     repositories {     ...     flatDir { dirs 'lib' }  // put in jdbc driver here       }  dependencies {                 .... classpath files('lib/ojdbc7.jar')  }

gradle proxy settings for work (http and https)

# my gradle proxy file C:\Users\mXX\.gradle\ gradle.properties systemProp.http.proxyHost =193.29.130.207 systemProp.http.proxyPor t=8080 systemProp.http.nonProxyHosts=*.ebXXX.local|localhost systemProp.https.proxyHost =193.29.130.207 systemProp.https.proxyPort =8080 systemProp.https.nonProxyHosts=*.ebXXX.local|localhost