Skip to content

Commit

Permalink
security fix for verison 1.7.06 (#1414)
Browse files Browse the repository at this point in the history
* security fix for verison 1.7.06

* version update
  • Loading branch information
itsKedar authored Dec 10, 2024
1 parent 771f4d7 commit cb7fa21
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ configurations {
all*.exclude module: 'wss-agent-api'
}

ext['tomcat.version'] = '10.1.25'
ext['tomcat.version'] = '10.1.31'
ext['groovy.version'] = '4.0.15'
ext['logback-classic.version'] = '1.2.10'
ext['spring-core.version'] = '6.1.14'
Expand Down Expand Up @@ -199,10 +199,15 @@ dependencies {
}


compile("software.amazon.awssdk:dynamodb:2.21.46")
compile("software.amazon.awssdk:regions:2.21.46")
compile("software.amazon.awssdk:auth:2.21.46")
compile("software.amazon.awssdk:sts:2.21.46")
compile("software.amazon.awssdk:dynamodb:2.22.0"){
exclude group: 'io.netty', module: 'netty-common'
}
compile("software.amazon.awssdk:regions:2.22.0")
compile("software.amazon.awssdk:auth:2.22.0")
compile("software.amazon.awssdk:sts:2.22.0"){
exclude group: 'io.netty', module: 'netty-common'
}
compile "io.netty:netty-common:4.1.115.Final"

compileOnly group: 'jakarta.servlet', name: 'jakarta.servlet-api', version: '6.0.0'

Expand Down

0 comments on commit cb7fa21

Please sign in to comment.