This repository has been archived on 2019-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
ensichat/core/build.gradle

24 lines
419 B
Groovy
Raw Normal View History

apply plugin: 'scala'
dependencies {
compile 'org.scala-lang:scala-library:2.11.7'
testCompile 'junit:junit:4.12'
testCompile 'commons-io:commons-io:2.4'
}
test {
systemProperty "testDir", new File(buildDir, "/test/").toString()
}
task myTestsJar(type: Jar) {
from sourceSets.test.output, sourceSets.main.output
}
configurations {
testArtifacts
}
artifacts {
testArtifacts myTestsJar
}