11plugins {
2- id " me.tatarka.retrolambda" version " 3.7.1"
32 id ' java-library'
43 id ' io.github.gradle-nexus.publish-plugin' version ' 1.1.0'
54 id ' com.diffplug.spotless' version ' 5.14.0'
@@ -16,6 +15,8 @@ repositories {
1615 maven { url uri(' https://repo.maven.apache.org/maven2/' ) }
1716}
1817
18+ var jackson_version = ' 2.14.2'
19+
1920dependencies {
2021 sourceCompatibility = 1.8
2122 targetCompatibility = 1.8
@@ -25,22 +26,18 @@ dependencies {
2526 testImplementation ' com.pholser:junit-quickcheck-generators:0.8.1'
2627 testRuntimeOnly ' org.junit.vintage:junit-vintage-engine:5.2.0'
2728
28- implementation ' com.google.guava:guava:20.0 '
29- implementation ' com.squareup.okhttp3:okhttp:3.11 .0'
30- implementation ' com.fasterxml.jackson.core:jackson-core:2.9.10 '
31- implementation ' com.fasterxml.jackson.core:jackson-core:2.9.10 '
32- implementation ' com.fasterxml.jackson.core:jackson-annotations:2.9.10 '
33- implementation ' com.fasterxml.jackson.core:jackson-databind:2.9.10 '
34- implementation ' com.auth0:java-jwt:3.4.0 '
29+ implementation ' com.google.guava:guava:31.1-jre '
30+ implementation ' com.squareup.okhttp3:okhttp:4.10 .0'
31+ implementation " com.fasterxml.jackson.core:jackson-core:$j ackson_version "
32+ implementation " com.fasterxml.jackson.core:jackson-core:$j ackson_version "
33+ implementation " com.fasterxml.jackson.core:jackson-annotations:$j ackson_version "
34+ implementation " com.fasterxml.jackson.core:jackson-databind:$j ackson_version "
35+ implementation ' com.auth0:java-jwt:4.2.2 '
3536
3637 api ' net.sourceforge.streamsupport:streamsupport:1.7.0'
3738 api ' net.sourceforge.streamsupport:streamsupport-cfuture:1.7.0'
3839}
3940
40- retrolambda {
41- javaVersion JavaVersion . VERSION_1_7
42- }
43-
4441def localProperties = new Properties ()
4542def localPropertiesFile = project. rootProject. file(' local.properties' )
4643if (localPropertiesFile. exists()) {
0 commit comments