diff --git a/build-11.gradle b/build-11.gradle index b6111ecc4..5d158e1d9 100644 --- a/build-11.gradle +++ b/build-11.gradle @@ -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" @@ -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' @@ -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' } diff --git a/build.gradle b/build.gradle index 4961de347..e6fce04bf 100644 --- a/build.gradle +++ b/build.gradle @@ -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" @@ -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' @@ -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")