Skip to content

Commit a75dc8b

Browse files
fix: resolve CVEs
1 parent b4bcf5c commit a75dc8b

9 files changed

Lines changed: 151 additions & 142 deletions

File tree

.vogue.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
defaultRules: {}
3+
packageRules:
4+
- package: "com.github.mxenabled.coppuccino:com.github.mxenabled.coppuccino.gradle.plugin"
5+
rules: {}
6+
suppressUntil: "2026-02-15"
7+
- package: "com.github.mxenabled.vogue:com.github.mxenabled.vogue.gradle.plugin"
8+
rules: {}
9+
suppressUntil: "2026-02-15"

build.gradle

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,47 @@ allprojects {
2727
mavenLocal()
2828
}
2929

30-
configurations.all {
30+
configurations.configureEach {
31+
resolutionStrategy.eachDependency { details ->
32+
//Uncontrolled Recursion [High Severity][https://security.snyk.io/vuln/SNYK-JAVA-ORGAPACHECOMMONS-10734078] in org.apache.commons:commons-lang3@3.17.0
33+
// introduced by net.sourceforge.pmd:pmd-java@7.16.0 > org.apache.commons:commons-lang3@3.17.0 and 7 other path(s)
34+
// This issue was fixed in versions: 3.18.0
35+
if (details.requested.group == "org.apache.commons" && details.requested.name == "commons-lang3") {
36+
details.useVersion "3.18.0"
37+
}
38+
//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
39+
// introduced by com.github.spotbugs:spotbugs@4.9.8 > org.apache.logging.log4j:log4j-core@2.24.3
40+
// This issue was fixed in versions: 2.25.3
41+
else if (details.requested.group == "org.apache.logging.log4j" && details.requested.name == "log4j-core") {
42+
details.useVersion "2.25.3"
43+
}
44+
//XML External Entity (XXE) Injection [Medium Severity][https://security.snyk.io/vuln/SNYK-JAVA-ORGASSERTJ-15102413] in org.assertj:assertj-core@3.27.6
45+
// introduced by com.mx.path-core:testing@5.1.0 > org.assertj:assertj-core@3.27.6 and 1 other path(s)
46+
// This issue was fixed in versions: 3.27.7
47+
else if (details.requested.group == "org.assertj" && details.requested.name == "assertj-core") {
48+
details.useVersion "3.27.7"
49+
}
50+
//Stack-based Buffer Overflow [High Severity][https://security.snyk.io/vuln/SNYK-JAVA-COMFASTERXMLJACKSONCORE-10500754] in com.fasterxml.jackson.core:jackson-core@2.14.2
51+
// introduced by io.honeybadger:honeybadger-java@2.1.2 > com.fasterxml.jackson.core:jackson-core@2.14.2 and 1 other path(s)
52+
// This issue was fixed in versions: 2.15.0-rc1
53+
//Denial of Service (DoS) [High Severity][https://security.snyk.io/vuln/SNYK-JAVA-COMFASTERXMLJACKSONCORE-7569538] in com.fasterxml.jackson.core:jackson-core@2.14.2
54+
// introduced by io.honeybadger:honeybadger-java@2.1.2 > com.fasterxml.jackson.core:jackson-core@2.14.2 and 1 other path(s)
55+
// This issue was fixed in versions: 2.15.0-rc1
56+
else if (details.requested.group == "com.fasterxml.jackson.core" && details.requested.name == "jackson-core") {
57+
details.useVersion "2.15.0-rc1"
58+
}
59+
//Information Exposure [Low Severity][https://security.snyk.io/vuln/SNYK-JAVA-COMMONSCODEC-561518] in commons-codec:commons-codec@1.11
60+
// 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
61+
// This issue was fixed in versions: 1.14
62+
else if (details.requested.group == "commons-codec" && details.requested.name == "commons-codec") {
63+
details.useVersion "1.14"
64+
}
65+
}
3166
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
3267
}
3368

3469
ext {
35-
pathSDKVersion = "[5.0,6.0)"
70+
pathSDKVersion = "[6.0,7.0)"
3671
}
3772
}
3873

encryption-service-jasypt/gradle.lockfile

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
com.auth0:java-jwt:4.5.0=testRuntimeClasspath
55
com.datadoghq:dd-trace-api:1.38.0=testRuntimeClasspath
66
com.fasterxml.jackson.core:jackson-annotations:2.15.4=testRuntimeClasspath
7-
com.fasterxml.jackson.core:jackson-core:2.15.4=testRuntimeClasspath
7+
com.fasterxml.jackson.core:jackson-core:2.15.0-rc1=testRuntimeClasspath
88
com.fasterxml.jackson.core:jackson-databind:2.15.4=testRuntimeClasspath
99
com.fasterxml.jackson:jackson-bom:2.15.4=testRuntimeClasspath
1010
com.github.oowekyala.ooxml:nice-xml-messages:3.1=pmd
@@ -25,22 +25,21 @@ com.google.guava:guava:33.4.8-jre=checkstyle
2525
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2626
com.google.j2objc:j2objc-annotations:2.8=compileClasspath,testCompileClasspath
2727
com.google.j2objc:j2objc-annotations:3.0.0=checkstyle
28-
com.mx.path-core:common:5.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
29-
com.mx.path-core:context:5.0.0=testRuntimeClasspath
30-
com.mx.path-core:gateway:5.0.0=testRuntimeClasspath
31-
com.mx.path-core:messaging:5.0.0=testRuntimeClasspath
32-
com.mx.path-core:platform:5.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
33-
com.mx.path-core:testing:5.0.0=testCompileClasspath,testRuntimeClasspath
34-
com.mx.path-core:utilities:5.0.0=testRuntimeClasspath
28+
com.mx.path-core:common:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
29+
com.mx.path-core:context:6.0.0=testRuntimeClasspath
30+
com.mx.path-core:gateway:6.0.0=testRuntimeClasspath
31+
com.mx.path-core:messaging:6.0.0=testRuntimeClasspath
32+
com.mx.path-core:platform:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
33+
com.mx.path-core:testing:6.0.0=testCompileClasspath,testRuntimeClasspath
34+
com.mx.path-core:utilities:6.0.0=testRuntimeClasspath
3535
com.puppycrawl.tools:checkstyle:10.25.0=checkstyle
3636
com.sun.istack:istack-commons-runtime:4.1.2=testRuntimeClasspath
3737
com.sun.xml.bind:jaxb-core:4.0.6=testRuntimeClasspath
3838
com.sun.xml.bind:jaxb-impl:4.0.6=testRuntimeClasspath
3939
commons-beanutils:commons-beanutils:1.11.0=checkstyle
40-
commons-codec:commons-codec:1.15=checkstyle,compileClasspath,pmd,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
40+
commons-codec:commons-codec:1.14=checkstyle,compileClasspath,pmd,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4141
commons-collections:commons-collections:3.2.2=checkstyle
4242
commons-io:commons-io:2.20.0=spotbugs
43-
commons-lang:commons-lang:2.6=testRuntimeClasspath
4443
commons-logging:commons-logging:1.2=testRuntimeClasspath
4544
info.picocli:picocli:4.7.7=checkstyle
4645
io.github.cdimascio:dotenv-java:2.3.2=testRuntimeClasspath
@@ -54,7 +53,7 @@ jakarta.xml.soap:jakarta.xml.soap-api:3.0.2=testRuntimeClasspath
5453
jaxen:jaxen:2.0.0=spotbugs
5554
net.bytebuddy:byte-buddy-agent:1.14.1=testCompileClasspath,testRuntimeClasspath
5655
net.bytebuddy:byte-buddy:1.14.1=testCompileClasspath
57-
net.bytebuddy:byte-buddy:1.17.7=testRuntimeClasspath
56+
net.bytebuddy:byte-buddy:1.18.3=testRuntimeClasspath
5857
net.sf.saxon:Saxon-HE:12.5=checkstyle,pmd
5958
net.sf.saxon:Saxon-HE:12.9=spotbugs
6059
net.sourceforge.pmd:pmd-ant:7.16.0=pmd
@@ -63,10 +62,7 @@ net.sourceforge.pmd:pmd-java:7.16.0=pmd
6362
org.antlr:antlr4-runtime:4.13.2=checkstyle
6463
org.antlr:antlr4-runtime:4.9.3=pmd
6564
org.apache.bcel:bcel:6.11.0=spotbugs
66-
org.apache.commons:commons-lang3:3.18.0=pmd
67-
org.apache.commons:commons-lang3:3.19.0=spotbugs
68-
org.apache.commons:commons-lang3:3.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
69-
org.apache.commons:commons-lang3:3.8.1=checkstyle
65+
org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
7066
org.apache.commons:commons-text:1.14.0=spotbugs
7167
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7268
org.apache.commons:commons-text:1.3=checkstyle
@@ -76,15 +72,15 @@ org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
7672
org.apache.httpcomponents:httpclient:4.5.13=checkstyle,testRuntimeClasspath
7773
org.apache.httpcomponents:httpcore:4.4.13=testRuntimeClasspath
7874
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
79-
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
80-
org.apache.logging.log4j:log4j-core:2.25.2=spotbugs
75+
org.apache.logging.log4j:log4j-api:2.25.3=spotbugs
76+
org.apache.logging.log4j:log4j-core:2.25.3=spotbugs
8177
org.apache.maven.doxia:doxia-core:1.12.0=checkstyle
8278
org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle
8379
org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle
8480
org.apache.maven.doxia:doxia-sink-api:1.12.0=checkstyle
8581
org.apache.xbean:xbean-reflect:3.7=checkstyle
8682
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
87-
org.assertj:assertj-core:3.27.6=testRuntimeClasspath
83+
org.assertj:assertj-core:3.27.7=testRuntimeClasspath
8884
org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
8985
org.checkerframework:checker-qual:3.49.3=checkstyle
9086
org.checkerframework:checker-qual:3.49.5=pmd

encryption-service-vault/gradle.lockfile

Lines changed: 14 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ com.auth0:java-jwt:4.5.0=testRuntimeClasspath
55
com.bettercloud:vault-java-driver:5.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
66
com.datadoghq:dd-trace-api:1.38.0=testRuntimeClasspath
77
com.fasterxml.jackson.core:jackson-annotations:2.15.4=testRuntimeClasspath
8-
com.fasterxml.jackson.core:jackson-core:2.15.4=testRuntimeClasspath
8+
com.fasterxml.jackson.core:jackson-core:2.15.0-rc1=testRuntimeClasspath
99
com.fasterxml.jackson.core:jackson-databind:2.15.4=testRuntimeClasspath
1010
com.fasterxml.jackson:jackson-bom:2.15.4=testRuntimeClasspath
1111
com.github.oowekyala.ooxml:nice-xml-messages:3.1=pmd
@@ -26,23 +26,21 @@ com.google.guava:guava:33.4.8-jre=checkstyle
2626
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2727
com.google.j2objc:j2objc-annotations:2.8=compileClasspath,testCompileClasspath
2828
com.google.j2objc:j2objc-annotations:3.0.0=checkstyle
29-
com.mx.path-core:common:5.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
30-
com.mx.path-core:context:5.0.0=testRuntimeClasspath
31-
com.mx.path-core:gateway:5.0.0=testRuntimeClasspath
32-
com.mx.path-core:messaging:5.0.0=testRuntimeClasspath
33-
com.mx.path-core:platform:5.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
34-
com.mx.path-core:testing:5.0.0=testCompileClasspath,testRuntimeClasspath
35-
com.mx.path-core:utilities:5.0.0=testRuntimeClasspath
29+
com.mx.path-core:common:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
30+
com.mx.path-core:context:6.0.0=testRuntimeClasspath
31+
com.mx.path-core:gateway:6.0.0=testRuntimeClasspath
32+
com.mx.path-core:messaging:6.0.0=testRuntimeClasspath
33+
com.mx.path-core:platform:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
34+
com.mx.path-core:testing:6.0.0=testCompileClasspath,testRuntimeClasspath
35+
com.mx.path-core:utilities:6.0.0=testRuntimeClasspath
3636
com.puppycrawl.tools:checkstyle:10.25.0=checkstyle
3737
com.sun.istack:istack-commons-runtime:4.1.2=testRuntimeClasspath
3838
com.sun.xml.bind:jaxb-core:4.0.6=testRuntimeClasspath
3939
com.sun.xml.bind:jaxb-impl:4.0.6=testRuntimeClasspath
4040
commons-beanutils:commons-beanutils:1.11.0=checkstyle
41-
commons-codec:commons-codec:1.11=testRuntimeClasspath
42-
commons-codec:commons-codec:1.15=checkstyle,pmd
41+
commons-codec:commons-codec:1.14=checkstyle,pmd,testRuntimeClasspath
4342
commons-collections:commons-collections:3.2.2=checkstyle
4443
commons-io:commons-io:2.20.0=spotbugs
45-
commons-lang:commons-lang:2.6=testRuntimeClasspath
4644
commons-logging:commons-logging:1.2=testRuntimeClasspath
4745
info.picocli:picocli:4.7.7=checkstyle
4846
io.github.cdimascio:dotenv-java:2.3.2=testRuntimeClasspath
@@ -56,7 +54,7 @@ jakarta.xml.soap:jakarta.xml.soap-api:3.0.2=testRuntimeClasspath
5654
jaxen:jaxen:2.0.0=spotbugs
5755
net.bytebuddy:byte-buddy-agent:1.14.1=testCompileClasspath,testRuntimeClasspath
5856
net.bytebuddy:byte-buddy:1.14.1=testCompileClasspath
59-
net.bytebuddy:byte-buddy:1.17.7=testRuntimeClasspath
57+
net.bytebuddy:byte-buddy:1.18.3=testRuntimeClasspath
6058
net.sf.saxon:Saxon-HE:12.5=checkstyle,pmd
6159
net.sf.saxon:Saxon-HE:12.9=spotbugs
6260
net.sourceforge.pmd:pmd-ant:7.16.0=pmd
@@ -65,10 +63,7 @@ net.sourceforge.pmd:pmd-java:7.16.0=pmd
6563
org.antlr:antlr4-runtime:4.13.2=checkstyle
6664
org.antlr:antlr4-runtime:4.9.3=pmd
6765
org.apache.bcel:bcel:6.11.0=spotbugs
68-
org.apache.commons:commons-lang3:3.18.0=pmd
69-
org.apache.commons:commons-lang3:3.19.0=spotbugs
70-
org.apache.commons:commons-lang3:3.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
71-
org.apache.commons:commons-lang3:3.8.1=checkstyle
66+
org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
7267
org.apache.commons:commons-text:1.14.0=spotbugs
7368
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7469
org.apache.commons:commons-text:1.3=checkstyle
@@ -78,15 +73,15 @@ org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
7873
org.apache.httpcomponents:httpclient:4.5.13=checkstyle,testRuntimeClasspath
7974
org.apache.httpcomponents:httpcore:4.4.13=testRuntimeClasspath
8075
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
81-
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
82-
org.apache.logging.log4j:log4j-core:2.25.2=spotbugs
76+
org.apache.logging.log4j:log4j-api:2.25.3=spotbugs
77+
org.apache.logging.log4j:log4j-core:2.25.3=spotbugs
8378
org.apache.maven.doxia:doxia-core:1.12.0=checkstyle
8479
org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle
8580
org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle
8681
org.apache.maven.doxia:doxia-sink-api:1.12.0=checkstyle
8782
org.apache.xbean:xbean-reflect:3.7=checkstyle
8883
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
89-
org.assertj:assertj-core:3.27.6=testRuntimeClasspath
84+
org.assertj:assertj-core:3.27.7=testRuntimeClasspath
9085
org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
9186
org.checkerframework:checker-qual:3.49.3=checkstyle
9287
org.checkerframework:checker-qual:3.49.5=pmd

exception-reporter-honeybadger/gradle.lockfile

Lines changed: 14 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ com.auth0:java-jwt:4.5.0=testRuntimeClasspath
55
com.datadoghq:dd-trace-api:1.38.0=testRuntimeClasspath
66
com.fasterxml.jackson.core:jackson-annotations:2.14.2=compileClasspath,runtimeClasspath,testCompileClasspath
77
com.fasterxml.jackson.core:jackson-annotations:2.15.4=testRuntimeClasspath
8-
com.fasterxml.jackson.core:jackson-core:2.14.2=compileClasspath,runtimeClasspath,testCompileClasspath
9-
com.fasterxml.jackson.core:jackson-core:2.15.4=testRuntimeClasspath
8+
com.fasterxml.jackson.core:jackson-core:2.15.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
109
com.fasterxml.jackson.core:jackson-databind:2.14.2=compileClasspath,runtimeClasspath,testCompileClasspath
1110
com.fasterxml.jackson.core:jackson-databind:2.15.4=testRuntimeClasspath
1211
com.fasterxml.jackson:jackson-bom:2.14.2=compileClasspath,runtimeClasspath,testCompileClasspath
@@ -32,23 +31,21 @@ com.google.j2objc:j2objc-annotations:2.8=compileClasspath,testCompileClasspath
3231
com.google.j2objc:j2objc-annotations:3.0.0=checkstyle
3332
com.jcabi:jcabi-log:0.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3433
com.jcabi:jcabi-manifests:1.2.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
35-
com.mx.path-core:common:5.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
36-
com.mx.path-core:context:5.0.0=testRuntimeClasspath
37-
com.mx.path-core:gateway:5.0.0=testRuntimeClasspath
38-
com.mx.path-core:messaging:5.0.0=testRuntimeClasspath
39-
com.mx.path-core:platform:5.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
40-
com.mx.path-core:testing:5.0.0=testCompileClasspath,testRuntimeClasspath
41-
com.mx.path-core:utilities:5.0.0=testRuntimeClasspath
34+
com.mx.path-core:common:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
35+
com.mx.path-core:context:6.0.0=testRuntimeClasspath
36+
com.mx.path-core:gateway:6.0.0=testRuntimeClasspath
37+
com.mx.path-core:messaging:6.0.0=testRuntimeClasspath
38+
com.mx.path-core:platform:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
39+
com.mx.path-core:testing:6.0.0=testCompileClasspath,testRuntimeClasspath
40+
com.mx.path-core:utilities:6.0.0=testRuntimeClasspath
4241
com.puppycrawl.tools:checkstyle:10.25.0=checkstyle
4342
com.sun.istack:istack-commons-runtime:4.1.2=testRuntimeClasspath
4443
com.sun.xml.bind:jaxb-core:4.0.6=testRuntimeClasspath
4544
com.sun.xml.bind:jaxb-impl:4.0.6=testRuntimeClasspath
4645
commons-beanutils:commons-beanutils:1.11.0=checkstyle
47-
commons-codec:commons-codec:1.11=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
48-
commons-codec:commons-codec:1.15=checkstyle,pmd
46+
commons-codec:commons-codec:1.14=checkstyle,compileClasspath,pmd,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4947
commons-collections:commons-collections:3.2.2=checkstyle
5048
commons-io:commons-io:2.20.0=spotbugs
51-
commons-lang:commons-lang:2.6=testRuntimeClasspath
5249
commons-logging:commons-logging:1.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
5350
info.picocli:picocli:4.7.7=checkstyle
5451
io.github.cdimascio:dotenv-java:2.3.2=testRuntimeClasspath
@@ -65,7 +62,7 @@ net.bytebuddy:byte-buddy-agent:1.10.13=compileClasspath,runtimeClasspath
6562
net.bytebuddy:byte-buddy-agent:1.14.1=testCompileClasspath,testRuntimeClasspath
6663
net.bytebuddy:byte-buddy:1.10.13=compileClasspath,runtimeClasspath
6764
net.bytebuddy:byte-buddy:1.14.1=testCompileClasspath
68-
net.bytebuddy:byte-buddy:1.17.7=testRuntimeClasspath
65+
net.bytebuddy:byte-buddy:1.18.3=testRuntimeClasspath
6966
net.logstash.logback:logstash-logback-encoder:6.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7067
net.sf.saxon:Saxon-HE:12.5=checkstyle,pmd
7168
net.sf.saxon:Saxon-HE:12.9=spotbugs
@@ -75,10 +72,7 @@ net.sourceforge.pmd:pmd-java:7.16.0=pmd
7572
org.antlr:antlr4-runtime:4.13.2=checkstyle
7673
org.antlr:antlr4-runtime:4.9.3=pmd
7774
org.apache.bcel:bcel:6.11.0=spotbugs
78-
org.apache.commons:commons-lang3:3.18.0=pmd
79-
org.apache.commons:commons-lang3:3.19.0=spotbugs
80-
org.apache.commons:commons-lang3:3.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
81-
org.apache.commons:commons-lang3:3.8.1=checkstyle
75+
org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
8276
org.apache.commons:commons-text:1.14.0=spotbugs
8377
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
8478
org.apache.commons:commons-text:1.3=checkstyle
@@ -90,15 +84,15 @@ org.apache.httpcomponents:httpclient:4.5.13=checkstyle
9084
org.apache.httpcomponents:httpclient:4.5.14=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
9185
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
9286
org.apache.httpcomponents:httpcore:4.4.16=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
93-
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
94-
org.apache.logging.log4j:log4j-core:2.25.2=spotbugs
87+
org.apache.logging.log4j:log4j-api:2.25.3=spotbugs
88+
org.apache.logging.log4j:log4j-core:2.25.3=spotbugs
9589
org.apache.maven.doxia:doxia-core:1.12.0=checkstyle
9690
org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle
9791
org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle
9892
org.apache.maven.doxia:doxia-sink-api:1.12.0=checkstyle
9993
org.apache.xbean:xbean-reflect:3.7=checkstyle
10094
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
101-
org.assertj:assertj-core:3.27.6=testRuntimeClasspath
95+
org.assertj:assertj-core:3.27.7=testRuntimeClasspath
10296
org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
10397
org.checkerframework:checker-qual:3.49.3=checkstyle
10498
org.checkerframework:checker-qual:3.49.5=pmd

0 commit comments

Comments
 (0)