1
0
mirror of https://github.com/fazo96/AIrium.git synced 2025-01-09 09:29:53 +01:00

ensure the gradle build system uses Java 8

This commit is contained in:
Enrico Fasoli 2015-08-09 22:52:35 +02:00
parent dd6b5d6b1b
commit d070bfcae9
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
apply plugin: "java"
sourceCompatibility = 1.6
sourceCompatibility = 1.8
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
sourceSets.main.java.srcDirs = [ "src/" ]

View File

@ -1,6 +1,6 @@
apply plugin: "java"
sourceCompatibility = 1.6
sourceCompatibility = 1.8
sourceSets.main.java.srcDirs = [ "src/" ]
project.ext.mainClassName = "com.mygdx.game.desktop.DesktopLauncher"