Skip to content

Commit fe41b93

Browse files
fix: try using strictly for updating cve dependencies
1 parent 5363197 commit fe41b93

13 files changed

Lines changed: 131 additions & 102 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-10"
6+
suppressUntil: "2026-02-28"
77
- package: "com.github.mxenabled.vogue:com.github.mxenabled.vogue.gradle.plugin"
88
rules: {}
9-
suppressUntil: "2026-02-10"
9+
suppressUntil: "2026-02-28"

build.gradle

Lines changed: 25 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -37,23 +37,23 @@ allprojects {
3737
mavenLocal()
3838
}
3939

40-
configurations.configureEach {
41-
resolutionStrategy.eachDependency { details ->
42-
//Uncontrolled Recursion [High Severity][https://security.snyk.io/vuln/SNYK-JAVA-ORGAPACHECOMMONS-10734078] in org.apache.commons:commons-lang3@3.17.0
43-
// introduced by net.sourceforge.pmd:pmd-java@7.16.0 > org.apache.commons:commons-lang3@3.17.0 and 7 other path(s)
44-
// This issue was fixed in versions: 3.18.0
45-
if (details.requested.group == "org.apache.commons" && details.requested.name == "commons-lang3") {
46-
details.useVersion "3.18.0"
47-
}
48-
//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.25.2
49-
// introduced by com.github.spotbugs:spotbugs@4.9.8 > org.apache.logging.log4j:log4j-core@2.25.2
50-
// This issue was fixed in versions: 2.25.3
51-
else if (details.requested.group == "org.apache.logging.log4j" && details.requested.name == "log4j-core") {
52-
details.useVersion "2.25.3"
53-
}
54-
}
55-
resolutionStrategy.cacheChangingModulesFor 0, "seconds"
56-
}
40+
// configurations.configureEach {
41+
// resolutionStrategy.eachDependency { details ->
42+
// //Uncontrolled Recursion [High Severity][https://security.snyk.io/vuln/SNYK-JAVA-ORGAPACHECOMMONS-10734078] in org.apache.commons:commons-lang3@3.17.0
43+
// // introduced by net.sourceforge.pmd:pmd-java@7.16.0 > org.apache.commons:commons-lang3@3.17.0 and 7 other path(s)
44+
// // This issue was fixed in versions: 3.18.0
45+
// if (details.requested.group == "org.apache.commons" && details.requested.name == "commons-lang3") {
46+
// details.useVersion "3.18.0"
47+
// }
48+
// //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.25.2
49+
// // introduced by com.github.spotbugs:spotbugs@4.9.8 > org.apache.logging.log4j:log4j-core@2.25.2
50+
// // This issue was fixed in versions: 2.25.3
51+
// else if (details.requested.group == "org.apache.logging.log4j" && details.requested.name == "log4j-core") {
52+
// details.useVersion "2.25.3"
53+
// }
54+
// }
55+
// resolutionStrategy.cacheChangingModulesFor 0, "seconds"
56+
// }
5757
}
5858

5959
subprojects {
@@ -102,6 +102,14 @@ subprojects {
102102
require "[2.0,3.0)"
103103
}
104104
}
105+
api("org.apache.commons:commons-lang3") {
106+
version { strictly "3.18.0" }
107+
because("SNYK-JAVA-ORGAPACHECOMMONS-10734078")
108+
}
109+
api("org.apache.logging.log4j:log4j-core") {
110+
version { strictly "2.25.3" }
111+
because("SNYK-JAVA-ORGAPACHELOGGINGLOG4J-14532782")
112+
}
105113
api "com.datadoghq:dd-trace-api:1.38.0"
106114
api "org.slf4j:slf4j-api:1.7.30"
107115
api "org.apache.httpcomponents:httpclient:4.5.13"

common/gradle.lockfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ net.sourceforge.pmd:pmd-java:7.16.0=pmd
3737
org.antlr:antlr4-runtime:4.13.2=checkstyle
3838
org.antlr:antlr4-runtime:4.9.3=pmd
3939
org.apache.bcel:bcel:6.11.0=spotbugs
40-
org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
40+
org.apache.commons:commons-lang3:3.18.0=compileClasspath,pmd,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
41+
org.apache.commons:commons-lang3:3.19.0=spotbugs
42+
org.apache.commons:commons-lang3:3.8.1=checkstyle
4143
org.apache.commons:commons-text:1.14.0=spotbugs
4244
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4345
org.apache.commons:commons-text:1.3=checkstyle
@@ -46,8 +48,8 @@ org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle,pmd
4648
org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
4749
org.apache.httpcomponents:httpclient:4.5.13=checkstyle
4850
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
49-
org.apache.logging.log4j:log4j-api:2.25.3=spotbugs
50-
org.apache.logging.log4j:log4j-core:2.25.3=spotbugs
51+
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
52+
org.apache.logging.log4j:log4j-core:2.25.2=spotbugs
5153
org.apache.maven.doxia:doxia-core:1.12.0=checkstyle
5254
org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle
5355
org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle

context/gradle.lockfile

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.auth0:java-jwt:4.5.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
5-
com.fasterxml.jackson.core:jackson-annotations:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6-
com.fasterxml.jackson.core:jackson-core:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7-
com.fasterxml.jackson.core:jackson-databind:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
8-
com.fasterxml.jackson:jackson-bom:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4+
com.auth0:java-jwt:4.5.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
5+
com.fasterxml.jackson.core:jackson-annotations:2.21=runtimeClasspath,testRuntimeClasspath
6+
com.fasterxml.jackson.core:jackson-core:2.21.0=runtimeClasspath,testRuntimeClasspath
7+
com.fasterxml.jackson.core:jackson-databind:2.21.0=runtimeClasspath,testRuntimeClasspath
8+
com.fasterxml.jackson:jackson-bom:2.21.0=runtimeClasspath,testRuntimeClasspath
99
com.github.oowekyala.ooxml:nice-xml-messages:3.1=pmd
1010
com.github.rholder:guava-retrying:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
1111
com.github.spotbugs:spotbugs-annotations:4.9.8=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
@@ -46,7 +46,9 @@ net.sourceforge.pmd:pmd-java:7.16.0=pmd
4646
org.antlr:antlr4-runtime:4.13.2=checkstyle
4747
org.antlr:antlr4-runtime:4.9.3=pmd
4848
org.apache.bcel:bcel:6.11.0=spotbugs
49-
org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
49+
org.apache.commons:commons-lang3:3.18.0=compileClasspath,pmd,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
50+
org.apache.commons:commons-lang3:3.19.0=spotbugs
51+
org.apache.commons:commons-lang3:3.8.1=checkstyle
5052
org.apache.commons:commons-text:1.14.0=spotbugs
5153
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
5254
org.apache.commons:commons-text:1.3=checkstyle
@@ -55,8 +57,8 @@ org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle,pmd
5557
org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
5658
org.apache.httpcomponents:httpclient:4.5.13=checkstyle
5759
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
58-
org.apache.logging.log4j:log4j-api:2.25.3=spotbugs
59-
org.apache.logging.log4j:log4j-core:2.25.3=spotbugs
60+
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
61+
org.apache.logging.log4j:log4j-core:2.25.2=spotbugs
6062
org.apache.maven.doxia:doxia-core:1.12.0=checkstyle
6163
org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle
6264
org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle

gateway-generator/gradle.lockfile

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.auth0:java-jwt:4.5.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4+
com.auth0:java-jwt:4.5.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
55
com.datadoghq:dd-trace-api:1.38.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6-
com.fasterxml.jackson.core:jackson-annotations:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7-
com.fasterxml.jackson.core:jackson-core:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
8-
com.fasterxml.jackson.core:jackson-databind:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
9-
com.fasterxml.jackson:jackson-bom:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6+
com.fasterxml.jackson.core:jackson-annotations:2.21=runtimeClasspath,testRuntimeClasspath
7+
com.fasterxml.jackson.core:jackson-core:2.21.0=runtimeClasspath,testRuntimeClasspath
8+
com.fasterxml.jackson.core:jackson-databind:2.21.0=runtimeClasspath,testRuntimeClasspath
9+
com.fasterxml.jackson:jackson-bom:2.21.0=runtimeClasspath,testRuntimeClasspath
1010
com.github.oowekyala.ooxml:nice-xml-messages:3.1=pmd
1111
com.github.rholder:guava-retrying:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
1212
com.github.spotbugs:spotbugs-annotations:4.9.8=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
@@ -60,7 +60,9 @@ net.sourceforge.pmd:pmd-java:7.16.0=pmd
6060
org.antlr:antlr4-runtime:4.13.2=checkstyle
6161
org.antlr:antlr4-runtime:4.9.3=pmd
6262
org.apache.bcel:bcel:6.11.0=spotbugs
63-
org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
63+
org.apache.commons:commons-lang3:3.18.0=compileClasspath,pmd,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
64+
org.apache.commons:commons-lang3:3.19.0=spotbugs
65+
org.apache.commons:commons-lang3:3.8.1=checkstyle
6466
org.apache.commons:commons-text:1.14.0=spotbugs
6567
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6668
org.apache.commons:commons-text:1.3=checkstyle
@@ -70,8 +72,8 @@ org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
7072
org.apache.httpcomponents:httpclient:4.5.13=checkstyle,runtimeClasspath,testRuntimeClasspath
7173
org.apache.httpcomponents:httpcore:4.4.13=runtimeClasspath,testRuntimeClasspath
7274
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
73-
org.apache.logging.log4j:log4j-api:2.25.3=spotbugs
74-
org.apache.logging.log4j:log4j-core:2.25.3=spotbugs
75+
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
76+
org.apache.logging.log4j:log4j-core:2.25.2=spotbugs
7577
org.apache.maven.doxia:doxia-core:1.12.0=checkstyle
7678
org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle
7779
org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle

gateway/gradle.lockfile

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.auth0:java-jwt:4.5.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4+
com.auth0:java-jwt:4.5.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
55
com.datadoghq:dd-trace-api:1.38.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6-
com.fasterxml.jackson.core:jackson-annotations:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7-
com.fasterxml.jackson.core:jackson-core:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
8-
com.fasterxml.jackson.core:jackson-databind:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
9-
com.fasterxml.jackson:jackson-bom:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6+
com.fasterxml.jackson.core:jackson-annotations:2.21=runtimeClasspath,testRuntimeClasspath
7+
com.fasterxml.jackson.core:jackson-core:2.21.0=runtimeClasspath,testRuntimeClasspath
8+
com.fasterxml.jackson.core:jackson-databind:2.21.0=runtimeClasspath,testRuntimeClasspath
9+
com.fasterxml.jackson:jackson-bom:2.21.0=runtimeClasspath,testRuntimeClasspath
1010
com.github.oowekyala.ooxml:nice-xml-messages:3.1=pmd
1111
com.github.rholder:guava-retrying:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
1212
com.github.spotbugs:spotbugs-annotations:4.9.8=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
@@ -56,7 +56,9 @@ net.sourceforge.pmd:pmd-java:7.16.0=pmd
5656
org.antlr:antlr4-runtime:4.13.2=checkstyle
5757
org.antlr:antlr4-runtime:4.9.3=pmd
5858
org.apache.bcel:bcel:6.11.0=spotbugs
59-
org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
59+
org.apache.commons:commons-lang3:3.18.0=compileClasspath,pmd,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
60+
org.apache.commons:commons-lang3:3.19.0=spotbugs
61+
org.apache.commons:commons-lang3:3.8.1=checkstyle
6062
org.apache.commons:commons-text:1.14.0=spotbugs
6163
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6264
org.apache.commons:commons-text:1.3=checkstyle
@@ -66,8 +68,8 @@ org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
6668
org.apache.httpcomponents:httpclient:4.5.13=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6769
org.apache.httpcomponents:httpcore:4.4.13=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6870
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
69-
org.apache.logging.log4j:log4j-api:2.25.3=spotbugs
70-
org.apache.logging.log4j:log4j-core:2.25.3=spotbugs
71+
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
72+
org.apache.logging.log4j:log4j-core:2.25.2=spotbugs
7173
org.apache.maven.doxia:doxia-core:1.12.0=checkstyle
7274
org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle
7375
org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle

http/gradle.lockfile

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.auth0:java-jwt:4.5.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4+
com.auth0:java-jwt:4.5.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
55
com.datadoghq:dd-trace-api:1.38.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6-
com.fasterxml.jackson.core:jackson-annotations:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7-
com.fasterxml.jackson.core:jackson-core:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
8-
com.fasterxml.jackson.core:jackson-databind:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
9-
com.fasterxml.jackson:jackson-bom:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6+
com.fasterxml.jackson.core:jackson-annotations:2.21=runtimeClasspath,testRuntimeClasspath
7+
com.fasterxml.jackson.core:jackson-core:2.21.0=runtimeClasspath,testRuntimeClasspath
8+
com.fasterxml.jackson.core:jackson-databind:2.21.0=runtimeClasspath,testRuntimeClasspath
9+
com.fasterxml.jackson:jackson-bom:2.21.0=runtimeClasspath,testRuntimeClasspath
1010
com.github.oowekyala.ooxml:nice-xml-messages:3.1=pmd
1111
com.github.rholder:guava-retrying:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
1212
com.github.spotbugs:spotbugs-annotations:4.9.8=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
@@ -56,7 +56,9 @@ net.sourceforge.pmd:pmd-java:7.16.0=pmd
5656
org.antlr:antlr4-runtime:4.13.2=checkstyle
5757
org.antlr:antlr4-runtime:4.9.3=pmd
5858
org.apache.bcel:bcel:6.11.0=spotbugs
59-
org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
59+
org.apache.commons:commons-lang3:3.18.0=compileClasspath,pmd,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
60+
org.apache.commons:commons-lang3:3.19.0=spotbugs
61+
org.apache.commons:commons-lang3:3.8.1=checkstyle
6062
org.apache.commons:commons-text:1.14.0=spotbugs
6163
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6264
org.apache.commons:commons-text:1.3=checkstyle
@@ -66,8 +68,8 @@ org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
6668
org.apache.httpcomponents:httpclient:4.5.13=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6769
org.apache.httpcomponents:httpcore:4.4.13=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6870
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
69-
org.apache.logging.log4j:log4j-api:2.25.3=spotbugs
70-
org.apache.logging.log4j:log4j-core:2.25.3=spotbugs
71+
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
72+
org.apache.logging.log4j:log4j-core:2.25.2=spotbugs
7173
org.apache.maven.doxia:doxia-core:1.12.0=checkstyle
7274
org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle
7375
org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle

messaging/gradle.lockfile

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.auth0:java-jwt:4.5.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
5-
com.fasterxml.jackson.core:jackson-annotations:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6-
com.fasterxml.jackson.core:jackson-core:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7-
com.fasterxml.jackson.core:jackson-databind:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
8-
com.fasterxml.jackson:jackson-bom:2.15.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4+
com.auth0:java-jwt:4.5.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
5+
com.fasterxml.jackson.core:jackson-annotations:2.21=runtimeClasspath,testRuntimeClasspath
6+
com.fasterxml.jackson.core:jackson-core:2.21.0=runtimeClasspath,testRuntimeClasspath
7+
com.fasterxml.jackson.core:jackson-databind:2.21.0=runtimeClasspath,testRuntimeClasspath
8+
com.fasterxml.jackson:jackson-bom:2.21.0=runtimeClasspath,testRuntimeClasspath
99
com.github.oowekyala.ooxml:nice-xml-messages:3.1=pmd
1010
com.github.rholder:guava-retrying:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
1111
com.github.spotbugs:spotbugs-annotations:4.9.8=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
@@ -47,7 +47,9 @@ net.sourceforge.pmd:pmd-java:7.16.0=pmd
4747
org.antlr:antlr4-runtime:4.13.2=checkstyle
4848
org.antlr:antlr4-runtime:4.9.3=pmd
4949
org.apache.bcel:bcel:6.11.0=spotbugs
50-
org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
50+
org.apache.commons:commons-lang3:3.18.0=compileClasspath,pmd,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
51+
org.apache.commons:commons-lang3:3.19.0=spotbugs
52+
org.apache.commons:commons-lang3:3.8.1=checkstyle
5153
org.apache.commons:commons-text:1.14.0=spotbugs
5254
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
5355
org.apache.commons:commons-text:1.3=checkstyle
@@ -56,8 +58,8 @@ org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle,pmd
5658
org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
5759
org.apache.httpcomponents:httpclient:4.5.13=checkstyle
5860
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
59-
org.apache.logging.log4j:log4j-api:2.25.3=spotbugs
60-
org.apache.logging.log4j:log4j-core:2.25.3=spotbugs
61+
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
62+
org.apache.logging.log4j:log4j-core:2.25.2=spotbugs
6163
org.apache.maven.doxia:doxia-core:1.12.0=checkstyle
6264
org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle
6365
org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle

0 commit comments

Comments
 (0)