Felix Ableitner
656f52d3f3
This allows us to use the same database implementation for Android and servers.
12 lines
295 B
Groovy
12 lines
295 B
Groovy
apply plugin: 'scala'
|
|
|
|
dependencies {
|
|
compile 'org.scala-lang:scala-library:2.11.7'
|
|
compile 'com.h2database:h2:1.4.191'
|
|
compile 'com.typesafe.slick:slick_2.11:3.1.1'
|
|
testCompile 'junit:junit:4.12'
|
|
}
|
|
|
|
test {
|
|
systemProperty "testDir", new File(buildDir, "/test/").toString()
|
|
}
|