cookery/core/build.gradle

27 lines
No EOL
558 B
Groovy

apply plugin: "java"
sourceCompatibility = 1.8
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
sourceSets {
main {
java.srcDirs = [ "src/" ]
resources.srcDirs= ["resources/"]
}
test {
java.srcDirs = ["test/"]
}
}
dependencies {
api "com.badlogicgames.gdx:gdx:$gdxVersion"
implementation 'se.koc:zutil:1.0.0-SNAPSHOT'
testImplementation "org.junit.jupiter:junit-jupiter-engine:5.5.2"
testImplementation "org.junit.platform:junit-platform-runner:1.5.2"
}
test {
useJUnitPlatform()
}