11 lines
205 B
Groovy
11 lines
205 B
Groovy
|
apply plugin: 'scala'
|
||
|
|
||
|
dependencies {
|
||
|
compile 'org.scala-lang:scala-library:2.11.7'
|
||
|
testCompile 'junit:junit:4.12'
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
systemProperty "testDir", new File(buildDir, "/test/").toString()
|
||
|
}
|