Skip to content

Commit ede5d3e

Browse files
fix: resolve CVEs
1 parent 9761fb2 commit ede5d3e

7 files changed

Lines changed: 120 additions & 116 deletions

File tree

.vogue.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ defaultRules: {}
33
packageRules:
44
- package: "com.github.mxenabled.coppuccino:com.github.mxenabled.coppuccino.gradle.plugin"
55
rules: {}
6-
suppressUntil: "2026-02-09"
6+
suppressUntil: "2026-02-15"
77
- package: "com.github.mxenabled.vogue:com.github.mxenabled.vogue.gradle.plugin"
88
rules: {}
9-
suppressUntil: "2026-02-09"
9+
suppressUntil: "2026-02-15"

build.gradle

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,39 @@ allprojects {
3434
mavenLocal()
3535
}
3636

37-
configurations.all {
37+
configurations.configureEach {
38+
resolutionStrategy.eachDependency { details ->
39+
//Uncontrolled Recursion [High Severity][https://security.snyk.io/vuln/SNYK-JAVA-ORGAPACHECOMMONS-10734078] in org.apache.commons:commons-lang3@3.17.0
40+
// introduced by net.sourceforge.pmd:pmd-java@7.16.0 > org.apache.commons:commons-lang3@3.17.0 and 7 other path(s)
41+
// This issue was fixed in versions: 3.18.0
42+
if (details.requested.group == "org.apache.commons" && details.requested.name == "commons-lang3") {
43+
details.useVersion "3.18.0"
44+
}
45+
//Improper Validation of Certificate with Host Mismatch [Medium Severity][https://security.snyk.io/vuln/SNYK-JAVA-ORGAPACHELOGGINGLOG4J-14532782] in org.apache.logging.log4j:log4j-core@2.24.3
46+
// introduced by com.github.spotbugs:spotbugs@4.9.8 > org.apache.logging.log4j:log4j-core@2.24.3
47+
// This issue was fixed in versions: 2.25.3
48+
else if (details.requested.group == "org.apache.logging.log4j" && details.requested.name == "log4j-core") {
49+
details.useVersion "2.25.3"
50+
}
51+
//XML External Entity (XXE) Injection [Medium Severity][https://security.snyk.io/vuln/SNYK-JAVA-ORGASSERTJ-15102413] in org.assertj:assertj-core@3.27.6
52+
// introduced by com.mx.path-core:testing@5.1.0 > org.assertj:assertj-core@3.27.6 and 1 other path(s)
53+
// This issue was fixed in versions: 3.27.7
54+
else if (details.requested.group == "org.assertj" && details.requested.name == "assertj-core") {
55+
details.useVersion "3.27.7"
56+
}
57+
//Information Exposure [Low Severity][https://security.snyk.io/vuln/SNYK-JAVA-COMMONSCODEC-561518] in commons-codec:commons-codec@1.11
58+
// introduced by io.honeybadger:honeybadger-java@2.1.2 > org.apache.httpcomponents:fluent-hc@4.5.14 > org.apache.httpcomponents:httpclient@4.5.14 > commons-codec:commons-codec@1.11
59+
// This issue was fixed in versions: 1.14
60+
else if (details.requested.group == "commons-codec" && details.requested.name == "commons-codec") {
61+
details.useVersion "1.14"
62+
}
63+
}
3864
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
3965
}
4066

4167
ext {
42-
pathSDKVersion = "[5.0,6.0)"
43-
springVersion = "3.5.8"
68+
pathSDKVersion = "[6.0,7.0)"
69+
springVersion = "[3.5,4.0)"
4470
}
4571
}
4672

mdx-gateway-generator/gradle.lockfile

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,21 @@ com.google.guava:guava:32.0.1-jre=runtimeClasspath,testRuntimeClasspath
2525
com.google.guava:guava:32.1.3-jre=compileClasspath,testCompileClasspath
2626
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2727
com.google.j2objc:j2objc-annotations:2.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
28-
com.mx.path-core:common:5.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
29-
com.mx.path-core:context:5.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
30-
com.mx.path-core:gateway-generator:5.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
31-
com.mx.path-core:gateway:5.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
32-
com.mx.path-core:messaging:5.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
33-
com.mx.path-core:platform:5.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
34-
com.mx.path-core:utilities:5.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
28+
com.mx.path-core:common:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
29+
com.mx.path-core:context:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
30+
com.mx.path-core:gateway-generator:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
31+
com.mx.path-core:gateway:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
32+
com.mx.path-core:messaging:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
33+
com.mx.path-core:platform:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
34+
com.mx.path-core:utilities:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3535
com.squareup:javapoet:1.13.0=runtimeClasspath,testRuntimeClasspath
3636
com.sun.istack:istack-commons-runtime:4.1.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3737
com.sun.xml.bind:jaxb-core:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3838
com.sun.xml.bind:jaxb-impl:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3939
commons-beanutils:commons-beanutils:1.11.0=runtimeClasspath,testRuntimeClasspath
40-
commons-codec:commons-codec:1.11=runtimeClasspath,testRuntimeClasspath
40+
commons-codec:commons-codec:1.14=runtimeClasspath,testRuntimeClasspath
4141
commons-collections:commons-collections:3.2.2=runtimeClasspath,testRuntimeClasspath
4242
commons-io:commons-io:2.20.0=spotbugs
43-
commons-lang:commons-lang:2.6=runtimeClasspath,testRuntimeClasspath
4443
commons-logging:commons-logging:1.3.5=runtimeClasspath,testRuntimeClasspath
4544
io.github.cdimascio:dotenv-java:2.3.2=runtimeClasspath,testRuntimeClasspath
4645
io.leangen.geantyref:geantyref:1.3.16=testRuntimeClasspath
@@ -55,14 +54,13 @@ net.bytebuddy:byte-buddy-agent:1.14.1=testCompileClasspath,testRuntimeClasspath
5554
net.bytebuddy:byte-buddy:1.14.1=testCompileClasspath,testRuntimeClasspath
5655
net.sf.saxon:Saxon-HE:12.9=spotbugs
5756
org.apache.bcel:bcel:6.11.0=spotbugs
58-
org.apache.commons:commons-lang3:3.19.0=spotbugs
59-
org.apache.commons:commons-lang3:3.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
57+
org.apache.commons:commons-lang3:3.18.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
6058
org.apache.commons:commons-text:1.14.0=spotbugs
6159
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6260
org.apache.httpcomponents:httpclient:4.5.13=runtimeClasspath,testRuntimeClasspath
6361
org.apache.httpcomponents:httpcore:4.4.13=runtimeClasspath,testRuntimeClasspath
64-
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
65-
org.apache.logging.log4j:log4j-core:2.25.2=spotbugs
62+
org.apache.logging.log4j:log4j-api:2.25.3=spotbugs
63+
org.apache.logging.log4j:log4j-core:2.25.3=spotbugs
6664
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
6765
org.checkerframework:checker-qual:3.33.0=runtimeClasspath,testRuntimeClasspath
6866
org.checkerframework:checker-qual:3.37.0=compileClasspath,testCompileClasspath

mdx-gateways/gradle.lockfile

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -32,24 +32,22 @@ com.google.guava:guava:33.4.8-jre=checkstyle
3232
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=annotationProcessor,checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3333
com.google.j2objc:j2objc-annotations:2.8=annotationProcessor,compileClasspath,testCompileClasspath
3434
com.google.j2objc:j2objc-annotations:3.0.0=checkstyle
35-
com.mx.path-core:common:5.1.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
36-
com.mx.path-core:context:5.1.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
37-
com.mx.path-core:gateway-generator:5.1.0=annotationProcessor
38-
com.mx.path-core:gateway:5.1.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
39-
com.mx.path-core:messaging:5.1.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
40-
com.mx.path-core:platform:5.1.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
41-
com.mx.path-core:utilities:5.1.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
35+
com.mx.path-core:common:6.0.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
36+
com.mx.path-core:context:6.0.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
37+
com.mx.path-core:gateway-generator:6.0.0=annotationProcessor
38+
com.mx.path-core:gateway:6.0.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
39+
com.mx.path-core:messaging:6.0.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
40+
com.mx.path-core:platform:6.0.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
41+
com.mx.path-core:utilities:6.0.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4242
com.puppycrawl.tools:checkstyle:10.25.0=checkstyle
4343
com.squareup:javapoet:1.13.0=annotationProcessor
4444
com.sun.istack:istack-commons-runtime:4.1.2=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4545
com.sun.xml.bind:jaxb-core:4.0.6=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4646
com.sun.xml.bind:jaxb-impl:4.0.6=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4747
commons-beanutils:commons-beanutils:1.11.0=annotationProcessor,checkstyle,runtimeClasspath,testRuntimeClasspath
48-
commons-codec:commons-codec:1.11=annotationProcessor,runtimeClasspath,testRuntimeClasspath
49-
commons-codec:commons-codec:1.15=checkstyle,pmd
48+
commons-codec:commons-codec:1.14=annotationProcessor,checkstyle,pmd,runtimeClasspath,testRuntimeClasspath
5049
commons-collections:commons-collections:3.2.2=annotationProcessor,checkstyle,runtimeClasspath,testRuntimeClasspath
5150
commons-io:commons-io:2.20.0=spotbugs
52-
commons-lang:commons-lang:2.6=annotationProcessor,runtimeClasspath,testRuntimeClasspath
5351
commons-logging:commons-logging:1.3.5=annotationProcessor,runtimeClasspath,testRuntimeClasspath
5452
info.picocli:picocli:4.7.7=checkstyle
5553
io.github.cdimascio:dotenv-java:2.3.2=annotationProcessor,runtimeClasspath,testRuntimeClasspath
@@ -72,10 +70,7 @@ net.sourceforge.pmd:pmd-java:7.16.0=pmd
7270
org.antlr:antlr4-runtime:4.13.2=checkstyle
7371
org.antlr:antlr4-runtime:4.9.3=pmd
7472
org.apache.bcel:bcel:6.11.0=spotbugs
75-
org.apache.commons:commons-lang3:3.18.0=pmd
76-
org.apache.commons:commons-lang3:3.19.0=spotbugs
77-
org.apache.commons:commons-lang3:3.20.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
78-
org.apache.commons:commons-lang3:3.8.1=checkstyle
73+
org.apache.commons:commons-lang3:3.18.0=annotationProcessor,checkstyle,compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
7974
org.apache.commons:commons-text:1.14.0=spotbugs
8075
org.apache.commons:commons-text:1.15.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
8176
org.apache.commons:commons-text:1.3=checkstyle
@@ -85,8 +80,8 @@ org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
8580
org.apache.httpcomponents:httpclient:4.5.13=annotationProcessor,checkstyle,runtimeClasspath,testRuntimeClasspath
8681
org.apache.httpcomponents:httpcore:4.4.13=annotationProcessor,runtimeClasspath,testRuntimeClasspath
8782
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
88-
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
89-
org.apache.logging.log4j:log4j-core:2.25.2=spotbugs
83+
org.apache.logging.log4j:log4j-api:2.25.3=spotbugs
84+
org.apache.logging.log4j:log4j-core:2.25.3=spotbugs
9085
org.apache.maven.doxia:doxia-core:1.12.0=checkstyle
9186
org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle
9287
org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle

mdx-models/gradle.lockfile

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,21 @@ com.google.guava:guava:33.4.8-jre=checkstyle
2828
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2929
com.google.j2objc:j2objc-annotations:2.8=compileClasspath,testCompileClasspath
3030
com.google.j2objc:j2objc-annotations:3.0.0=checkstyle
31-
com.mx.path-core:common:5.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
32-
com.mx.path-core:context:5.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
33-
com.mx.path-core:gateway:5.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
34-
com.mx.path-core:messaging:5.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
35-
com.mx.path-core:platform:5.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
36-
com.mx.path-core:testing:5.1.0=testCompileClasspath,testRuntimeClasspath
37-
com.mx.path-core:utilities:5.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
31+
com.mx.path-core:common:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
32+
com.mx.path-core:context:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
33+
com.mx.path-core:gateway:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
34+
com.mx.path-core:messaging:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
35+
com.mx.path-core:platform:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
36+
com.mx.path-core:testing:6.0.0=testCompileClasspath,testRuntimeClasspath
37+
com.mx.path-core:utilities:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3838
com.puppycrawl.tools:checkstyle:10.25.0=checkstyle
3939
com.sun.istack:istack-commons-runtime:4.1.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4040
com.sun.xml.bind:jaxb-core:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4141
com.sun.xml.bind:jaxb-impl:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4242
commons-beanutils:commons-beanutils:1.11.0=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
43-
commons-codec:commons-codec:1.11=runtimeClasspath,testRuntimeClasspath
44-
commons-codec:commons-codec:1.15=checkstyle,pmd
43+
commons-codec:commons-codec:1.14=checkstyle,pmd,runtimeClasspath,testRuntimeClasspath
4544
commons-collections:commons-collections:3.2.2=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4645
commons-io:commons-io:2.20.0=spotbugs
47-
commons-lang:commons-lang:2.6=runtimeClasspath,testRuntimeClasspath
4846
commons-logging:commons-logging:1.3.5=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4947
info.picocli:picocli:4.7.7=checkstyle
5048
io.github.cdimascio:dotenv-java:2.3.2=runtimeClasspath,testRuntimeClasspath
@@ -58,7 +56,7 @@ jakarta.xml.soap:jakarta.xml.soap-api:3.0.2=compileClasspath,runtimeClasspath,te
5856
jaxen:jaxen:2.0.0=spotbugs
5957
net.bytebuddy:byte-buddy-agent:1.14.1=testCompileClasspath,testRuntimeClasspath
6058
net.bytebuddy:byte-buddy:1.14.1=testCompileClasspath
61-
net.bytebuddy:byte-buddy:1.17.7=testRuntimeClasspath
59+
net.bytebuddy:byte-buddy:1.18.3=testRuntimeClasspath
6260
net.sf.saxon:Saxon-HE:12.5=checkstyle,pmd
6361
net.sf.saxon:Saxon-HE:12.9=spotbugs
6462
net.sourceforge.pmd:pmd-ant:7.16.0=pmd
@@ -67,10 +65,7 @@ net.sourceforge.pmd:pmd-java:7.16.0=pmd
6765
org.antlr:antlr4-runtime:4.13.2=checkstyle
6866
org.antlr:antlr4-runtime:4.9.3=pmd
6967
org.apache.bcel:bcel:6.11.0=spotbugs
70-
org.apache.commons:commons-lang3:3.18.0=pmd
71-
org.apache.commons:commons-lang3:3.19.0=spotbugs
72-
org.apache.commons:commons-lang3:3.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
73-
org.apache.commons:commons-lang3:3.8.1=checkstyle
68+
org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
7469
org.apache.commons:commons-text:1.14.0=spotbugs
7570
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7671
org.apache.commons:commons-text:1.3=checkstyle
@@ -80,15 +75,15 @@ org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
8075
org.apache.httpcomponents:httpclient:4.5.13=checkstyle,runtimeClasspath,testRuntimeClasspath
8176
org.apache.httpcomponents:httpcore:4.4.13=runtimeClasspath,testRuntimeClasspath
8277
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
83-
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
84-
org.apache.logging.log4j:log4j-core:2.25.2=spotbugs
78+
org.apache.logging.log4j:log4j-api:2.25.3=spotbugs
79+
org.apache.logging.log4j:log4j-core:2.25.3=spotbugs
8580
org.apache.maven.doxia:doxia-core:1.12.0=checkstyle
8681
org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle
8782
org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle
8883
org.apache.maven.doxia:doxia-sink-api:1.12.0=checkstyle
8984
org.apache.xbean:xbean-reflect:3.7=checkstyle
9085
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
91-
org.assertj:assertj-core:3.27.6=testRuntimeClasspath
86+
org.assertj:assertj-core:3.27.7=testRuntimeClasspath
9287
org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
9388
org.checkerframework:checker-qual:3.49.3=checkstyle
9489
org.checkerframework:checker-qual:3.49.5=pmd

0 commit comments

Comments
 (0)