build: update jdk on windows from 191 to 201

This commit is contained in:
Connor Tumbleson 2019-02-16 13:43:23 -05:00
parent b0f22918cc
commit 37e700424a
No known key found for this signature in database
GPG Key ID: C3CC0A201EC7DA75
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then
choco install jdk8
export PATH=$PATH:"/c/Program Files/Java/jdk1.8.0_191/bin"
export PATH=$PATH:"/c/Program Files/Java/jdk1.8.0_201/bin"
./gradlew.bat clean
else
./gradlew clean

View File

@ -1,7 +1,7 @@
#!/usr/bin/env sh
if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then
export PATH=$PATH:"/c/Program Files/Java/jdk1.8.0_191/bin"
export PATH=$PATH:"/c/Program Files/Java/jdk1.8.0_201/bin"
./gradlew.bat build shadowJar proguard
else
./gradlew build shadowJar proguard