summaryrefslogtreecommitdiffstats
path: root/core/build.gradle
blob: 5e4e04b934f9f5d43c6ab32eb896118784496779 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
apply plugin: "java"

sourceCompatibility = 1.7
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'

sourceSets.main.java.srcDirs = [ "src/" ]
sourceSets.test.java.srcDirs = [ "test/" ]


eclipse.project {
    name = appName + "-core"
}