diff options
author | Jordan Byrne <draknyte1@hotmail.com> | 2018-01-29 22:44:13 +1000 |
---|---|---|
committer | Jordan Byrne <draknyte1@hotmail.com> | 2018-01-29 22:44:13 +1000 |
commit | 79f6d0d5981324541c4b89e14597dec59627cdc8 (patch) | |
tree | 99e747ed8aed906f7817853f49ec50b256d21657 /build.gradle | |
parent | 8babe66bd502f9c7997ab0343bb16cda6ac43a11 (diff) | |
download | GT5-Unofficial-79f6d0d5981324541c4b89e14597dec59627cdc8.tar.gz GT5-Unofficial-79f6d0d5981324541c4b89e14597dec59627cdc8.tar.bz2 GT5-Unofficial-79f6d0d5981324541c4b89e14597dec59627cdc8.zip |
$ Updated build.gradle to compile against Java 8.
^ Bumped Recommended version.
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle index 621fea68e7..31c9f847b2 100644 --- a/build.gradle +++ b/build.gradle @@ -35,10 +35,10 @@ dependencies { fatJar files('libs/Segment-2.1.0.jar') } -sourceCompatibility = JavaVersion.VERSION_1_7 -targetCompatibility = JavaVersion.VERSION_1_7 -sourceCompatibility = 1.7 -targetCompatibility = 1.7 +sourceCompatibility = JavaVersion.VERSION_1_8 +targetCompatibility = JavaVersion.VERSION_1_8 +sourceCompatibility = 1.8 +targetCompatibility = 1.8 archivesBaseName = "GT-PlusPlus" version = "1.7.0-prerelease" |