Upgrade to Gradle 5.6.2, Java 11

This commit is contained in:
skogaby 2019-09-28 23:12:15 -05:00
parent 64e526410d
commit 20e3667b47
10 changed files with 12 additions and 12 deletions

View File

@ -3,7 +3,7 @@ version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
sourceCompatibility = 1.11
repositories {
mavenCentral()

View File

@ -4,7 +4,7 @@ version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'kotlin'
sourceCompatibility = 1.8
sourceCompatibility = 1.11
repositories {
mavenCentral()

View File

@ -3,7 +3,7 @@ version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
sourceCompatibility = 1.11
repositories {
mavenCentral()

View File

@ -3,7 +3,7 @@ version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
sourceCompatibility = 1.11
repositories {
mavenCentral()

View File

@ -5,7 +5,7 @@ apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'com.github.johnrengelman.shadow'
sourceCompatibility = 1.8
sourceCompatibility = 1.11
mainClassName = "com.buttongames.butterflyserver.Main"
@ -53,7 +53,7 @@ buildscript {
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1'
classpath 'com.github.jengelman.gradle.plugins:shadow:5.1.0'
}
}

View File

@ -2,4 +2,4 @@
server.port = 80
server.maintenance = false
server.paselienable = true
server.forceextrastage = false
server.forceextrastage = true

View File

@ -5,7 +5,7 @@ apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'com.github.johnrengelman.shadow'
sourceCompatibility = 1.8
sourceCompatibility = 1.11
mainClassName = "com.buttongames.butterflywebui.Main"
@ -53,6 +53,6 @@ buildscript {
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1'
classpath 'com.github.jengelman.gradle.plugins:shadow:5.1.0'
}
}

Binary file not shown.

View File

@ -1,6 +1,6 @@
#Fri Jan 04 17:50:58 CST 2019
#Sat Sep 28 22:27:21 CDT 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.0-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-bin.zip

2
gradlew vendored
View File

@ -133,7 +133,7 @@ if $cygwin ; then
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a eventCondition
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
else
eval `echo args$i`="\"$arg\""