diff --git a/integration/build.gradle b/integration/build.gradle index 293480e272..ad9c6dc4c3 100644 --- a/integration/build.gradle +++ b/integration/build.gradle @@ -46,6 +46,7 @@ dependencies { // Google dependencies constraints { implementation 'com.google.guava:guava:30.1.1-jre' + implementation 'org.json:json:20231013' // security vulnerability } implementation platform('com.google.cloud:libraries-bom:26.0.0') implementation "com.google.api-client:google-api-client:${googleApi}" diff --git a/integration/gradle.lockfile b/integration/gradle.lockfile index 18383b7133..6fb717222f 100644 --- a/integration/gradle.lockfile +++ b/integration/gradle.lockfile @@ -249,8 +249,7 @@ org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.10=compileClasspath,runtimeClasspath org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.jetbrains.kotlin:kotlin-stdlib:1.6.20=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.jetbrains:annotations:13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.json:json:20200518=compileClasspath,testCompileClasspath -org.json:json:20230227=runtimeClasspath,testRuntimeClasspath +org.json:json:20231013=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-api:5.7.0=compileClasspath,testCompileClasspath org.junit.jupiter:junit-jupiter-api:5.9.0=runtimeClasspath,testRuntimeClasspath org.junit.platform:junit-platform-commons:1.7.0=compileClasspath,testCompileClasspath diff --git a/service/gradle.lockfile b/service/gradle.lockfile index 23032d58f5..323384cf2b 100644 --- a/service/gradle.lockfile +++ b/service/gradle.lockfile @@ -385,7 +385,7 @@ org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4=testRuntimeClasspath org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.6.4=testRuntimeClasspath org.jetbrains:annotations:13.0=compileClasspath,productionRuntimeClasspath,runtimeClasspath org.jetbrains:annotations:17.0.0=testCompileClasspath,testRuntimeClasspath -org.json:json:20230227=compileClasspath,productionRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.json:json:20231013=compileClasspath,productionRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-api:5.8.2=testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-engine:5.8.2=testRuntimeClasspath org.junit.jupiter:junit-jupiter-params:5.8.2=testCompileClasspath,testRuntimeClasspath diff --git a/service/gradle/dependencies.gradle b/service/gradle/dependencies.gradle index f968c6152c..c279f12b63 100644 --- a/service/gradle/dependencies.gradle +++ b/service/gradle/dependencies.gradle @@ -10,7 +10,7 @@ dependencies { // Google dependencies constraints { implementation 'com.google.guava:guava:31.1-jre' // "-jre" for Java 8 or higher - implementation 'org.json:json:20230227' + implementation 'org.json:json:20231013' // security vulnerability } implementation platform('com.google.cloud:libraries-bom:26.0.0')