Unciv/tests/build.gradle

23 lines
253 B
Groovy
Raw Permalink Normal View History

apply plugin: "java"
sourceCompatibility = 1.6
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
sourceSets {
test {
java {
srcDir 'src'
}
}
}
eclipse.project {
name = appName + "-tests"
}