summaryrefslogtreecommitdiffstats
path: root/core/build.gradle
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2014-09-10 22:59:32 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2014-09-10 22:59:32 +0200
commit86e0e122a475dfd4f627fc95a9458e7527d72a00 (patch)
tree6c85c5b28d1f94cf146b16039f6df27aeeb484d3 /core/build.gradle
downloadRustAndDust-86e0e122a475dfd4f627fc95a9458e7527d72a00.zip
RustAndDust-86e0e122a475dfd4f627fc95a9458e7527d72a00.tar.gz
Initial commit
Diffstat (limited to 'core/build.gradle')
-rw-r--r--core/build.gradle11
1 files changed, 11 insertions, 0 deletions
diff --git a/core/build.gradle b/core/build.gradle
new file mode 100644
index 0000000..03cd1be
--- /dev/null
+++ b/core/build.gradle
@@ -0,0 +1,11 @@
+apply plugin: "java"
+
+sourceCompatibility = 1.6
+[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
+
+sourceSets.main.java.srcDirs = [ "src/" ]
+
+
+eclipse.project {
+ name = appName + "-core"
+}