diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2016-12-02 16:45:20 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2016-12-02 16:45:20 +0100 |
commit | 1c2c93eba8c84e22b22f3b2c2f1704633dd6e6ab (patch) | |
tree | 54b03893e4fd87d3aef1a0b2ea272c18c2271073 | |
parent | 41fb3fd7afc46162dee1299a0b37d7ee5835b436 (diff) | |
download | RustAndDust-1c2c93eba8c84e22b22f3b2c2f1704633dd6e6ab.zip RustAndDust-1c2c93eba8c84e22b22f3b2c2f1704633dd6e6ab.tar.gz |
build.gradle : sourceCompatibility = 1.8
-rw-r--r-- | core/build.gradle | 2 | ||||
-rw-r--r-- | desktop/build.gradle | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/build.gradle b/core/build.gradle index 2a28c7b..0a20fb2 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -1,6 +1,6 @@ apply plugin: "java" -sourceCompatibility = 1.7 +sourceCompatibility = 1.8 [compileJava, compileTestJava]*.options*.encoding = 'UTF-8' sourceSets.main.java.srcDirs = [ "src/" ] diff --git a/desktop/build.gradle b/desktop/build.gradle index 3539d47..82bb29c 100644 --- a/desktop/build.gradle +++ b/desktop/build.gradle @@ -1,6 +1,6 @@ apply plugin: "java" -sourceCompatibility = 1.7 +sourceCompatibility = 1.8 sourceSets.main.java.srcDirs = [ "src/" ] project.ext.mainClassName = "ch.asynk.rustanddust.desktop.DesktopLauncher" |