mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
12 lines
403 B
Groovy
12 lines
403 B
Groovy
|
Properties constants = new Properties()
|
||
|
file("$rootDir/../constants.properties").withInputStream { constants.load(it) }
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile group: 'com.github.docker-java', name: 'docker-java', version: constants.dockerJavaVersion
|
||
|
compile group: 'com.github.docker-java', name: 'docker-java-transport-httpclient5', version: constants.dockerJavaVersion
|
||
|
}
|