blob: 13c049ad61408f39347d02ebbaa933b568f80620 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
apply plugin: "java"
sourceCompatibility = 1.8
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
sourceSets.main.java.srcDirs = [ "src/" ]
eclipse.project {
name = appName + "-core"
}
|