2015-03-20 14:18:29 +01:00
|
|
|
apply plugin: 'java'
|
|
|
|
|
|
|
|
sourceCompatibility = 1.7
|
2015-05-26 17:30:45 +02:00
|
|
|
version = '0.0.1'
|
2015-03-20 14:18:29 +01:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2015-04-07 18:48:58 +02:00
|
|
|
compile project(':domain')
|
2015-04-06 10:01:03 +02:00
|
|
|
compile 'com.google.guava:guava-concurrent:r03'
|
|
|
|
testCompile 'org.slf4j:slf4j-simple:1.7.12'
|
2015-03-20 14:18:29 +01:00
|
|
|
testCompile 'junit:junit:4.11'
|
|
|
|
}
|