Skip to content

Commit

Permalink
Merge pull request #600 from mikaylathompson/transitive-mend-fixes
Browse files Browse the repository at this point in the history
Mend fixes for various transitive dependencies
  • Loading branch information
mikaylathompson authored Apr 23, 2024
1 parent 328dbb7 commit b709271
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 1 deletion.
5 changes: 5 additions & 0 deletions TrafficCapture/dockerSolution/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ def calculateDockerHash = { projectName ->
dependencies {
implementation project(':trafficCaptureProxyServer')
implementation project(':trafficReplayer')
constraints {
implementation('software.amazon.awssdk:secretsmanager:2.25.19') {
because 'mend security issue'
}
}
}

def dockerFilesForExternalServices = [
Expand Down
5 changes: 5 additions & 0 deletions TrafficCapture/trafficCaptureProxyServer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ dependencies {
testImplementation group: 'org.testcontainers', name: 'kafka', version: '1.19.7'
testImplementation group: 'org.testcontainers', name: 'testcontainers', version: '1.19.7'
testImplementation group: 'org.testcontainers', name: 'toxiproxy', version: '1.19.7'
constraints {
testImplementation('org.apache.commons:commons-compress:1.26.0') {
because 'mend security issue'
}
}
}

tasks.withType(Tar){
Expand Down
3 changes: 3 additions & 0 deletions TrafficCapture/trafficCaptureProxyServerTest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ dependencies {
implementation('org.apache.tika:tika-core:1.28.4') {
because 'mend security issue'
}
implementation('com.jayway.jsonpath:json-path:2.9.0') {
because 'mend security issue'
}
}
}

Expand Down
12 changes: 11 additions & 1 deletion TrafficCapture/trafficReplayer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ dependencies {
implementation group: 'software.amazon.awssdk', name: 'arns', version: '2.20.102'
implementation group: 'software.amazon.awssdk', name: 'auth', version: '2.20.102'
implementation group: 'software.amazon.awssdk', name: 'sdk-core', version: '2.20.102'
implementation group: 'software.amazon.awssdk', name: 'secretsmanager', version: '2.20.127'
implementation group: 'software.amazon.awssdk', name: 'secretsmanager', version: '2.25.19'
implementation group: 'software.amazon.msk', name: 'aws-msk-iam-auth', version: '2.0.3'
implementation 'org.apache.commons:commons-compress:1.26.0'

Expand Down Expand Up @@ -86,9 +86,19 @@ dependencies {
testImplementation group: 'org.testcontainers', name: 'junit-jupiter', version: '1.19.7'
testImplementation group: 'org.testcontainers', name: 'kafka', version: '1.19.7'
testImplementation group: 'org.testcontainers', name: 'testcontainers', version: '1.19.7'

testImplementation group: 'org.mockito', name:'mockito-core', version:'4.6.1'
testImplementation group: 'org.mockito', name:'mockito-junit-jupiter', version:'4.6.1'
testRuntimeOnly group:'org.junit.jupiter', name:'junit-jupiter-engine', version:'5.x.x'

constraints {
testImplementation('org.apache.commons:commons-compress:1.26.0') {
because 'mend security issue'
}
implementation('io.netty:netty-codec-http:4.1.108.Final') {
because 'mend security issue'
}
}
}

configurations.all {
Expand Down

0 comments on commit b709271

Please sign in to comment.