Skip to content

Commit

Permalink
Updated springboot tomact version (#1337)
Browse files Browse the repository at this point in the history
  • Loading branch information
itsKedar authored Mar 29, 2024
1 parent 3ff1a86 commit 4cc4e7f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions build-11.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
CxSBSDK = "0.6.2"
ConfigProviderVersion = '1.0.14'
//cxVersion = "8.90.5"
springBootVersion = '3.2.3'
springBootVersion = '3.2.4'
sonarqubeVersion = '2.8'
atlassianVersion = "5.2.0"
atlassianFugueVersion = "4.7.2"
Expand Down Expand Up @@ -64,7 +64,7 @@ configurations {
all*.exclude module: 'wss-agent-api'
}

ext['tomcat.version'] = '10.1.16'
ext['tomcat.version'] = '10.1.19'
ext['groovy.version'] = '4.0.15'
ext['logback-classic.version'] = '1.2.10'
ext['spring-core.version'] = '6.1.5'
Expand Down Expand Up @@ -193,7 +193,9 @@ dependencies {
implementation group:'org.apache.tomcat', name:'tomcat-juli', version:property('tomcat.version')
implementation group:'org.springframework', name:'spring-core', version:property('spring-core.version')

implementation group: 'com.sendgrid', name: 'sendgrid-java', version: '4.9.0'
implementation (group: 'com.sendgrid', name: 'sendgrid-java', version: '4.9.0'){
exclude group: 'org.bouncycastle', module:'bcprov-jdk15on'
}
compileOnly group: 'jakarta.servlet', name: 'jakarta.servlet-api', version: '6.0.0'
}

Expand Down
8 changes: 5 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
CxSBSDK = "0.6.3"
ConfigProviderVersion = '1.0.14'
//cxVersion = "8.90.5"
springBootVersion = '3.2.3'
springBootVersion = '3.2.4'
sonarqubeVersion = '2.8'
atlassianVersion = "5.2.0"
atlassianFugueVersion = "4.7.2"
Expand Down Expand Up @@ -62,7 +62,7 @@ configurations {
all*.exclude module: 'wss-agent-api'
}

ext['tomcat.version'] = '10.1.16'
ext['tomcat.version'] = '10.1.19'
ext['groovy.version'] = '4.0.15'
ext['logback-classic.version'] = '1.2.10'
ext['spring-core.version'] = '6.1.5'
Expand Down Expand Up @@ -191,7 +191,9 @@ dependencies {
implementation group:'org.apache.tomcat', name:'tomcat-juli', version:property('tomcat.version')
implementation group:'org.springframework', name:'spring-core', version:property('spring-core.version')

implementation group: 'com.sendgrid', name: 'sendgrid-java', version: '4.9.0'
implementation (group: 'com.sendgrid', name: 'sendgrid-java', version: '4.9.0'){
exclude group: 'org.bouncycastle', module:'bcprov-jdk15on'
}


compile("software.amazon.awssdk:dynamodb:2.21.40")
Expand Down

0 comments on commit 4cc4e7f

Please sign in to comment.