Skip to content

Commit

Permalink
Update guava to address CVE-2023-2976
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Aguilar <[email protected]>
  • Loading branch information
jaguilar-atl committed Jul 27, 2023
1 parent a3be3b9 commit c943877
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildscript {
// 1.0.0 -> 1.0.0.0, and 1.0.0-SNAPSHOT -> 1.0.0.0-SNAPSHOT
opensearch_build = opensearch_version.replaceAll(/(\.\d+)([^\d]*)$/, '$1.0$2')
common_utils_version = System.getProperty("common_utils.version", opensearch_build)
job_scheduler_version = System.getProperty("job_scheduler.version", opensearch_build)
job_scheduler_version = System.getProperty("job_scheduler.version", opensearch_build)
kotlin_version = System.getProperty("kotlin.version", "1.6.0")
}

Expand Down Expand Up @@ -109,7 +109,7 @@ allprojects {
version = "${opensearch_version}" - "-SNAPSHOT" + ".0"
if (isSnapshot) {
version += "-SNAPSHOT"
}
}
plugins.withId('java') {
sourceCompatibility = targetCompatibility = "1.8"
}
Expand All @@ -130,7 +130,7 @@ dependencies {
compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9"
compile "${group}:common-utils:${common_utils_version}"
compileOnly "${group}:opensearch-job-scheduler-spi:${job_scheduler_version}"
compile group: 'com.google.guava', name: 'guava', version: '31.0.1-jre'
compile group: 'com.google.guava', name: 'guava', version: '32.0.1-jre'
compile "org.json:json:20230227"
compile group: 'com.github.wnameless', name: 'json-flattener', version: '0.1.0'
implementation 'org.jsoup:jsoup:1.15.3'
Expand Down

0 comments on commit c943877

Please sign in to comment.