Skip to content

Commit

Permalink
springboot to 3.1.12 + aws sdk upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
jhua-vmware committed Jun 17, 2024
1 parent 1454496 commit 7f9cc63
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,13 @@ jobs:
format: sarif
gh-code-scanning-compat: true
max-allowed-issues: 2147483647
- name: Clean duplicates
run: |
jq '.runs |= unique_by({tool, invocations, results})' results.sarif > final-results.sarif
- name: Upload SARIF results file
uses: github/codeql-action/upload-sarif@main
with:
sarif_file: results.sarif
sarif_file: final-results.sarif

smoke-test:
name: Smoke Test
Expand Down Expand Up @@ -116,7 +119,12 @@ jobs:
echo $str Smoke Test Start $str
date
locale
java -cp "target/*:resource/*" org.testng.TestNG testng.xml
sleep 10
java -cp "target/*:resource/*" org.testng.TestNG testng.xml || test_status=$?
if [[ ${test_status} -ne 0 ]]; then
docker logs singleton
exit ${test_status}
fi
echo $str Smoke Test End $str
performance-test:
Expand Down
6 changes: 3 additions & 3 deletions g11n-ws/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

buildscript {
ext {
springBootVersion = '3.1.11'
springBootVersion = '3.1.12'
}
repositories {
mavenLocal()
Expand Down Expand Up @@ -51,7 +51,7 @@ subprojects{
httpclient='4.5.13'
jacksonVersion = '2.16.0'
springdocVersion='2.2.0'
tomcatVersion= '10.1.20'
tomcatVersion= '10.1.24'

ehCacheVersion = '3.10.8'
cacheApiVersion='1.1.1'
Expand All @@ -73,7 +73,7 @@ subprojects{

postgresqlVersion = "42.1.4"
druidVersion = "1.1.8"
awsS3Version = "1.12.497"
awsS3Version = "1.12.741"
swaggerVersion = "3.0.0"
icu4jVersion = "60.3"

Expand Down
4 changes: 2 additions & 2 deletions g11n-ws/modules/md-service-authen/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//Copyright 2019-2023 VMware, Inc.
//Copyright 2019-2024 VMware, Inc.
//SPDX-License-Identifier: EPL-2.0
apply plugin: 'java-library'
apply plugin: 'org.springframework.boot'
Expand Down Expand Up @@ -39,7 +39,7 @@ dependencies {
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.27")
implementation("com.nimbusds:nimbus-jose-jwt:9.37.3")
}

bootJar {
Expand Down
2 changes: 1 addition & 1 deletion g11n-ws/vip-manager-i18n/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ bootJar {
from ("${baseOutputDir}/html5") {
into 'static/i18n/docs'
}

}

bootJar.doLast {
Expand Down
2 changes: 1 addition & 1 deletion g11n-ws/vip-manager-l10n/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,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.1')
implementation('com.nimbusds:nimbus-jose-jwt:9.37.3')


//swagger UI -START
Expand Down

0 comments on commit 7f9cc63

Please sign in to comment.