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

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

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


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