15 lines
284 B
Groovy
15 lines
284 B
Groovy
apply plugin: 'java'
|
|
|
|
sourceCompatibility = 1.7
|
|
version = '1.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':domain')
|
|
compile 'com.google.guava:guava-concurrent:r03'
|
|
testCompile 'org.slf4j:slf4j-simple:1.7.12'
|
|
testCompile 'junit:junit:4.11'
|
|
} |