Update to gradle 5.4

This commit is contained in:
dordsor21 2019-04-23 22:27:32 +01:00
parent 9b3ca4468c
commit 1e97392244
4 changed files with 14 additions and 14 deletions

View File

@ -37,11 +37,11 @@ shadowJar {
include(dependency(':Core')) include(dependency(':Core'))
include(dependency('org.bstats:bstats-bukkit:1.4')) include(dependency('org.bstats:bstats-bukkit:1.4'))
// update notification stuff // update notification stuff
include(dependency('com.github.Sauilitired:Jenkins4J:2.0-SNAPSHOT')) include(dependency('com.github.Sauilitired:Jenkins4J:3.0-SNAPSHOT'))
include(dependency('com.squareup.retrofit2:retrofit:2.4.0')) include(dependency('com.squareup.retrofit2:retrofit:2.5.0'))
include(dependency('com.squareup.okhttp3:okhttp:3.14.0')) include(dependency('com.squareup.okhttp3:okhttp:3.14.1'))
include(dependency('com.squareup.okio:okio:2.2.2')) include(dependency('com.squareup.okio:okio:2.2.2'))
include(dependency('org.jetbrains.kotlin:kotlin-stdlib:1.3.21')) include(dependency('org.jetbrains.kotlin:kotlin-stdlib:1.3.30'))
} }
archiveName = "${parent.name}-${project.name}-${parent.version}.jar" archiveName = "${parent.name}-${project.name}-${parent.version}.jar"
destinationDir = file '../target' destinationDir = file '../target'

View File

@ -12,10 +12,10 @@ dependencies {
annotationProcessor("org.projectlombok:lombok:1.18.4") annotationProcessor("org.projectlombok:lombok:1.18.4")
testAnnotationProcessor("org.projectlombok:lombok:1.18.4") testAnnotationProcessor("org.projectlombok:lombok:1.18.4")
compile 'com.github.Sauilitired:Jenkins4J:2.0-SNAPSHOT' compile 'com.github.Sauilitired:Jenkins4J:3.0-SNAPSHOT'
compile 'com.squareup.okhttp3:okhttp:3.14.0' compile 'com.squareup.okhttp3:okhttp:3.14.1'
compile 'com.squareup.okio:okio:2.2.2' compile 'com.squareup.okio:okio:2.2.2'
compile 'org.jetbrains.kotlin:kotlin-stdlib:1.3.21' compile 'org.jetbrains.kotlin:kotlin-stdlib:1.3.30'
} }
sourceCompatibility = 1.8 sourceCompatibility = 1.8

View File

@ -11,7 +11,7 @@ buildscript {
} }
configurations.all { configurations.all {
resolutionStrategy { resolutionStrategy {
force 'org.ow2.asm:asm:7.0' force 'org.ow2.asm:asm:7.1'
} }
} }
} }
@ -69,11 +69,11 @@ subprojects {
} }
//Minecraft uses Guava 21 as of 1.13. //Minecraft uses Guava 21 as of 1.13.
compile 'com.google.guava:guava:21.0' compile 'com.google.guava:guava:21.0'
compile("org.projectlombok:lombok:1.18.4") compile("org.projectlombok:lombok:1.18.6")
compileOnly("org.projectlombok:lombok:1.18.4") compileOnly("org.projectlombok:lombok:1.18.6")
testCompileOnly("org.projectlombok:lombok:1.18.4") testCompileOnly("org.projectlombok:lombok:1.18.6")
annotationProcessor("org.projectlombok:lombok:1.18.4") annotationProcessor("org.projectlombok:lombok:1.18.6")
testAnnotationProcessor("org.projectlombok:lombok:1.18.4") testAnnotationProcessor("org.projectlombok:lombok:1.18.6")
testImplementation "junit:junit:4.12" testImplementation "junit:junit:4.12"
} }

View File

@ -1,6 +1,6 @@
#Fri Dec 21 16:11:33 EST 2018 #Fri Dec 21 16:11:33 EST 2018
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.0-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-5.4-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists