Skip to content

Commit

Permalink
Merge pull request #3135 from sjiang-cb/master
Browse files Browse the repository at this point in the history
Upgrade spring boot to 3.11 due to security issues (CVE-2024-22243, CVE-2024-22259, CVE-2024-22262)
  • Loading branch information
sjiang-cb authored May 8, 2024
2 parents 49bbb97 + 38e89b8 commit 1454496
Showing 1 changed file with 8 additions and 16 deletions.
24 changes: 8 additions & 16 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.10'
springBootVersion = '3.1.11'
}
repositories {
mavenLocal()
Expand All @@ -22,14 +22,14 @@ buildscript {

allprojects{
version = project.getProperty('buildNumber')

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: "org.sonarqube"
apply plugin: "jacoco"


group = 'com.vmware'
sourceCompatibility = '17'

Expand All @@ -39,25 +39,19 @@ allprojects{
maven { url "https://repo1.maven.org/maven2/" }
mavenCentral()
jcenter()


}



}

subprojects{



ext {

projectVersion = '0.0.1-SNAPSHOT'
httpclient='4.5.13'
jacksonVersion = '2.16.0'
springdocVersion='2.2.0'
tomcatVersion= '10.1.18'
tomcatVersion= '10.1.20'

ehCacheVersion = '3.10.8'
cacheApiVersion='1.1.1'
Expand All @@ -68,29 +62,27 @@ subprojects{
commonsLangVersion = '3.12.0'
commonsIoVersion = '2.11.0'
commonsCodecVersion='1.15'

guavaVersion="32.1.2-jre"
snakeyam="2.0"
jjwtVersion="0.9.1"
hibernateJpa21Api = "1.0.2.Final"
log4j2Version="2.18.0"
slf4jVersion="1.7.32"
esapiVersion="2.5.3.1"

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

buildRelease = 'beta'
remoteServer = ""
deployPath="$rootDir/../publish/"
}

tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}


}

0 comments on commit 1454496

Please sign in to comment.