26 lines
573 B
Groovy
26 lines
573 B
Groovy
apply plugin: 'java'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
mavenLocal()
|
|
|
|
maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local' }
|
|
maven { url "http://artifactory.ionu.int:8069/artifactory/libs-release-local/" }
|
|
maven { url "http://artifactory.ionu.int:8069/artifactory/libs-snapshot-local/" }
|
|
|
|
|
|
}
|
|
//ant.importBuild 'build.xml'
|
|
|
|
dependencies {
|
|
compile project(':ionu-java')
|
|
|
|
compile files('httpcore-4.2.4.jar')
|
|
compile files('libs/httpclient-4.2.5.jar')
|
|
compile files('libs/httpmime-4.2.5.jar')
|
|
|
|
testCompile 'junit:junit:4.+'
|
|
}
|
|
|
|
|