2020-03-21 19:57:43 +01:00
|
|
|
sourceCompatibility = '1.8'
|
2019-12-31 16:50:44 +01:00
|
|
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
|
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
|
main {
|
|
|
|
|
java.srcDirs = [ "src/" ]
|
2020-01-04 20:03:57 +01:00
|
|
|
resources.srcDirs= ["resources/"]
|
2019-12-31 16:50:44 +01:00
|
|
|
}
|
|
|
|
|
test {
|
|
|
|
|
java.srcDirs = ["test/"]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2020-03-21 19:57:43 +01:00
|
|
|
compile "org.jmonkeyengine:jme3-core:${jme3Version}-stable"
|
|
|
|
|
compile "org.jmonkeyengine:jme3-terrain:${jme3Version}-stable"
|
2020-01-04 20:03:57 +01:00
|
|
|
|
2020-02-16 00:31:58 +01:00
|
|
|
implementation 'se.koc:zutil:1.0.0-SNAPSHOT'
|
2020-01-04 20:03:57 +01:00
|
|
|
|
2019-12-31 16:50:44 +01:00
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-engine:5.5.2"
|
|
|
|
|
testImplementation "org.junit.platform:junit-platform-runner:1.5.2"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
test {
|
|
|
|
|
useJUnitPlatform()
|
|
|
|
|
}
|