diff --git a/g11n-ws/build.gradle b/g11n-ws/build.gradle index 4f844d18a..526ebe3c7 100644 --- a/g11n-ws/build.gradle +++ b/g11n-ws/build.gradle @@ -47,7 +47,7 @@ subprojects{ ext { projectVersion = '0.0.1-SNAPSHOT' - httpclient='4.5.13' + httpclient='4.5.14' jacksonVersion = '2.18.7' springdocVersion='2.8.8' tomcatVersion= '10.1.55' @@ -70,14 +70,16 @@ subprojects{ log4j2Version="2.25.4" slf4jVersion="2.0.18" esapiVersion="2.6.2.0" + nimbusJoseJwtVersion="10.1" postgresqlVersion = "42.1.4" druidVersion = "1.1.8" - awsS3Version = "1.12.741" - gcpGcsVersion = "26.70.0" + awsS3Version = "1.12.797" + gcpGcsVersion = "26.83.0" grpcVersion = "1.76.0" swaggerVersion = "3.0.0" icu4jVersion = "77.1" + jodaTimeVersion = "2.13.1" buildRelease = 'beta' remoteServer = "" diff --git a/g11n-ws/modules/md-data-api-gcsimpl/build.gradle b/g11n-ws/modules/md-data-api-gcsimpl/build.gradle index 7ad3c013a..b7f20d9b0 100644 --- a/g11n-ws/modules/md-data-api-gcsimpl/build.gradle +++ b/g11n-ws/modules/md-data-api-gcsimpl/build.gradle @@ -1,4 +1,4 @@ -//Copyright 2019-2025 VMware, Inc. +//Copyright 2019-2026 VMware, Inc. //SPDX-License-Identifier: EPL-2.0 apply plugin: 'java-library' apply plugin: 'org.springframework.boot' @@ -26,7 +26,11 @@ dependencies { compileOnly("com.fasterxml.jackson.core:jackson-databind:$jacksonVersion") implementation platform("com.google.cloud:libraries-bom:$gcpGcsVersion") implementation platform("io.grpc:grpc-bom:$grpcVersion") - implementation("com.google.cloud:google-cloud-storage") + implementation("com.google.cloud:google-cloud-storage") { + exclude group: 'com.fasterxml.jackson.dataformat', module: 'jackson-dataformat-xml' + exclude group: 'com.fasterxml.woodstox', module: 'woodstox-core' + exclude group: 'org.codehaus.woodstox', module: 'stax2-api' + } } diff --git a/g11n-ws/modules/md-data-api-s3impl/build.gradle b/g11n-ws/modules/md-data-api-s3impl/build.gradle index 8fba97834..e8c549e88 100644 --- a/g11n-ws/modules/md-data-api-s3impl/build.gradle +++ b/g11n-ws/modules/md-data-api-s3impl/build.gradle @@ -1,4 +1,4 @@ -//Copyright 2019-2025 VMware, Inc. +//Copyright 2019-2026 VMware, Inc. //SPDX-License-Identifier: EPL-2.0 apply plugin: 'java-library' apply plugin: 'org.springframework.boot' @@ -26,6 +26,7 @@ dependencies { implementation ("com.amazonaws:aws-java-sdk-s3:$awsS3Version") implementation ("com.amazonaws:aws-java-sdk-sts:$awsS3Version") implementation ("com.amazonaws:aws-java-sdk-iam:$awsS3Version") + implementation ("joda-time:joda-time:$jodaTimeVersion") } diff --git a/g11n-ws/modules/md-service-authen/build.gradle b/g11n-ws/modules/md-service-authen/build.gradle index b8fec3b64..8bb5db413 100644 --- a/g11n-ws/modules/md-service-authen/build.gradle +++ b/g11n-ws/modules/md-service-authen/build.gradle @@ -1,4 +1,4 @@ -//Copyright 2019-2025 VMware, Inc. +//Copyright 2019-2026 VMware, Inc. //SPDX-License-Identifier: EPL-2.0 apply plugin: 'java-library' apply plugin: 'org.springframework.boot' @@ -35,12 +35,12 @@ dependencies { exclude group: "org.owasp.antisamy" exclude group: "commons-lang" } + implementation("com.nimbusds:nimbus-jose-jwt:$nimbusJoseJwtVersion") compileOnly("commons-fileupload:commons-fileupload:1.5") compileOnly("io.jsonwebtoken:jjwt:$jjwtVersion") compileOnly("org.apache.commons:commons-lang3:$commonsLangVersion") compileOnly("org.springdoc:springdoc-openapi-starter-webmvc-api:$springdocVersion") - implementation("com.nimbusds:nimbus-jose-jwt:9.37.4") } bootJar { diff --git a/g11n-ws/vip-manager-l10n/build.gradle b/g11n-ws/vip-manager-l10n/build.gradle index b586fad5b..b2c41e278 100644 --- a/g11n-ws/vip-manager-l10n/build.gradle +++ b/g11n-ws/vip-manager-l10n/build.gradle @@ -1,4 +1,4 @@ -//Copyright 2019-2025 VMware, Inc. +//Copyright 2019-2026 VMware, Inc. //SPDX-License-Identifier: EPL-2.0 apply plugin: 'java-library' apply plugin: 'org.springframework.boot' @@ -51,7 +51,7 @@ dependencies { implementation("org.yaml:snakeyaml:$snakeyam") implementation("io.jsonwebtoken:jjwt:$jjwtVersion") implementation("org.hibernate.javax.persistence:hibernate-jpa-2.1-api:$hibernateJpa21Api") - implementation('com.nimbusds:nimbus-jose-jwt:9.37.3') + implementation("com.nimbusds:nimbus-jose-jwt:$nimbusJoseJwtVersion") //swagger UI -START