cookery/core/build.gradle

23 lines
465 B
Groovy
Raw Normal View History

2019-12-31 16:50:44 +01:00
apply plugin: "java"
sourceCompatibility = 1.8
2019-12-31 16:50:44 +01:00
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
sourceSets {
main {
java.srcDirs = [ "src/" ]
}
test {
java.srcDirs = ["test/"]
}
}
dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-engine:5.5.2"
testImplementation "org.junit.platform:junit-platform-runner:1.5.2"
api "com.badlogicgames.gdx:gdx:$gdxVersion"
}
test {
useJUnitPlatform()
}