Skip to content

Commit 6919be2

Browse files
committed
revert: "feat!: bump checkstyle, gradle, java, mockito, spotless"
This reverts commit fb973c7. vogueSuppress coppuccino and vogue upgrades resolve CVE blocking pipeline
1 parent 1928a40 commit 6919be2

17 files changed

Lines changed: 361 additions & 322 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,3 @@ jobs:
1616
uses: mxenabled/path-tools/.github/workflows/ci.yml@master
1717
with:
1818
force: ${{ inputs.force != '' && inputs.force }}
19-
java-version: '21'

.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-10"
7+
- package: "com.github.mxenabled.vogue:com.github.mxenabled.vogue.gradle.plugin"
8+
rules: {}
9+
suppressUntil: "2026-02-10"

build.gradle

Lines changed: 22 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
plugins {
22
id "idea"
3-
id "com.github.mxenabled.coppuccino" version "6.+" apply false
4-
id "com.github.mxenabled.vogue" version "3.+"
5-
id "io.freefair.lombok" version "8.14.3" apply false
3+
id "com.github.mxenabled.coppuccino" version "5.+" apply false
4+
id "com.github.mxenabled.vogue" version "2.+"
5+
id "io.freefair.lombok" version "8.+" apply false
66
id "io.github.gradle-nexus.publish-plugin" version "1.1.+"
77
}
88

@@ -29,26 +29,30 @@ allprojects {
2929
group "com.mx.path-core"
3030
description "MX Path Core"
3131
version rootProject.version
32-
33-
java {
34-
toolchain {
35-
languageVersion = JavaLanguageVersion.of(21)
36-
}
37-
}
32+
sourceCompatibility = JavaVersion.VERSION_17
33+
targetCompatibility = JavaVersion.VERSION_17
3834

3935
repositories {
4036
mavenCentral()
4137
mavenLocal()
4238
}
4339

44-
configurations.all {
45-
//remove after upgrading checkstyle 13.0.0
40+
configurations.configureEach {
4641
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
4745
if (details.requested.group == "org.apache.commons" && details.requested.name == "commons-lang3") {
4846
details.useVersion "3.18.0"
4947
}
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+
}
5054
}
51-
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
55+
resolutionStrategy.cacheChangingModulesFor 0, "seconds"
5256
}
5357
}
5458

@@ -61,7 +65,7 @@ subprojects {
6165
apply plugin: "io.freefair.lombok"
6266

6367
ext {
64-
mockitoVersion = "5.21.0"
68+
mockitoVersion = "[5.0,6.0)"
6569
spockVersion = "2.4-M6-groovy-3.0"
6670
junitVersion = "5.14.0"
6771
}
@@ -112,19 +116,14 @@ subprojects {
112116
api "com.sun.xml.bind:jaxb-impl:4.0.6!!"
113117
api "org.glassfish.jaxb:jaxb-runtime:4.0.6!!"
114118
// -----------------------------------------------------------------
115-
116119
}
117120

118-
testImplementation "org.mockito:mockito-core:${project.ext.mockitoVersion}"
121+
testImplementation "org.mockito:mockito-inline:${project.ext.mockitoVersion}"
119122
testImplementation "org.spockframework:spock-core:${project.ext.spockVersion}"
120123
testImplementation "org.junit.jupiter:junit-jupiter-api:${project.ext.junitVersion}"
121124
}
122125

123-
test {
124-
useJUnitPlatform()
125-
// restore reflection on base java classes to fix issue w/ tests
126-
jvmArgs "--add-opens", "java.base/java.lang=ALL-UNNAMED"
127-
}
126+
test { useJUnitPlatform() }
128127

129128
compileJava { options.compilerArgs << "-parameters" }
130129

@@ -145,12 +144,12 @@ subprojects {
145144
}
146145

147146
task sourcesJar(type: Jar, dependsOn: classes) {
148-
archiveClassifier = "sources"
147+
classifier = "sources"
149148
from sourceSets.main.allSource
150149
}
151150

152151
task packageJavadoc(type: Jar) {
153-
archiveClassifier = "javadoc"
152+
classifier = "javadoc"
154153
from javadoc
155154
}
156155

@@ -244,12 +243,6 @@ task spotlessApply {
244243
}
245244
}
246245

247-
sourceSets {
248-
main {
249-
java { srcDir "build/generated/sources/annotationProcessor" }
250-
}
251-
}
252-
253246
task subdependencies {
254247
subprojects.each {
255248
if (it.name != platformProject) {
@@ -264,6 +257,6 @@ task subdependencies {
264257
project.tasks.getByPath("dependencies").finalizedBy("subdependencies")
265258

266259
wrapper {
267-
gradleVersion = "8.14.3"
260+
gradleVersion = "7.6.4"
268261
distributionType = Wrapper.DistributionType.ALL
269262
}

common/gradle.lockfile

Lines changed: 31 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,28 @@ com.github.stephenc.jcip:jcip-annotations:1.0-1=spotbugs
99
com.google.code.findbugs:jsr305:3.0.2=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
1010
com.google.code.gson:gson:2.13.1=pmd
1111
com.google.code.gson:gson:2.13.2=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
12+
com.google.errorprone:error_prone_annotations:2.36.0=checkstyle
1213
com.google.errorprone:error_prone_annotations:2.38.0=pmd
13-
com.google.errorprone:error_prone_annotations:2.41.0=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
14+
com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
1415
com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
1516
com.google.guava:failureaccess:1.0.3=checkstyle
1617
com.google.guava:guava:32.1.3-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
17-
com.google.guava:guava:33.5.0-jre=checkstyle
18+
com.google.guava:guava:33.4.8-jre=checkstyle
1819
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
1920
com.google.j2objc:j2objc-annotations:2.8=compileClasspath,testCompileClasspath
20-
com.google.j2objc:j2objc-annotations:3.1=checkstyle
21-
com.puppycrawl.tools:checkstyle:13.0.0=checkstyle
21+
com.google.j2objc:j2objc-annotations:3.0.0=checkstyle
22+
com.puppycrawl.tools:checkstyle:10.25.0=checkstyle
2223
commons-beanutils:commons-beanutils:1.11.0=checkstyle
23-
commons-codec:commons-codec:1.11=checkstyle
24-
commons-codec:commons-codec:1.15=pmd
24+
commons-codec:commons-codec:1.15=checkstyle,pmd
2525
commons-collections:commons-collections:3.2.2=checkstyle
2626
commons-io:commons-io:2.20.0=spotbugs
2727
info.picocli:picocli:4.7.7=checkstyle
2828
io.leangen.geantyref:geantyref:1.3.16=testRuntimeClasspath
2929
jaxen:jaxen:2.0.0=spotbugs
30-
net.bytebuddy:byte-buddy-agent:1.17.7=testCompileClasspath,testRuntimeClasspath
31-
net.bytebuddy:byte-buddy:1.17.7=testCompileClasspath,testRuntimeClasspath
32-
net.sf.saxon:Saxon-HE:12.5=pmd
33-
net.sf.saxon:Saxon-HE:12.9=checkstyle,spotbugs
30+
net.bytebuddy:byte-buddy-agent:1.14.1=testCompileClasspath,testRuntimeClasspath
31+
net.bytebuddy:byte-buddy:1.14.1=testCompileClasspath,testRuntimeClasspath
32+
net.sf.saxon:Saxon-HE:12.5=checkstyle,pmd
33+
net.sf.saxon:Saxon-HE:12.9=spotbugs
3434
net.sourceforge.pmd:pmd-ant:7.16.0=pmd
3535
net.sourceforge.pmd:pmd-core:7.16.0=pmd
3636
net.sourceforge.pmd:pmd-java:7.16.0=pmd
@@ -41,60 +41,63 @@ org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeC
4141
org.apache.commons:commons-text:1.14.0=spotbugs
4242
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4343
org.apache.commons:commons-text:1.3=checkstyle
44-
org.apache.httpcomponents.client5:httpclient5:5.1.3=pmd
45-
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=pmd
46-
org.apache.httpcomponents.core5:httpcore5:5.1.3=pmd
44+
org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle,pmd
45+
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle,pmd
46+
org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
4747
org.apache.httpcomponents:httpclient:4.5.13=checkstyle
4848
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
49-
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
50-
org.apache.logging.log4j:log4j-core:2.25.2=spotbugs
49+
org.apache.logging.log4j:log4j-api:2.25.3=spotbugs
50+
org.apache.logging.log4j:log4j-core:2.25.3=spotbugs
5151
org.apache.maven.doxia:doxia-core:1.12.0=checkstyle
5252
org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle
5353
org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle
5454
org.apache.maven.doxia:doxia-sink-api:1.12.0=checkstyle
5555
org.apache.xbean:xbean-reflect:3.7=checkstyle
5656
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
5757
org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
58+
org.checkerframework:checker-qual:3.49.3=checkstyle
5859
org.checkerframework:checker-qual:3.49.5=pmd
59-
org.checkerframework:checker-qual:3.52.1=checkstyle
6060
org.codehaus.groovy:groovy:3.0.24=testCompileClasspath,testRuntimeClasspath
6161
org.codehaus.plexus:plexus-classworlds:2.6.0=checkstyle
6262
org.codehaus.plexus:plexus-component-annotations:2.1.0=checkstyle
6363
org.codehaus.plexus:plexus-container-default:2.1.0=checkstyle
6464
org.codehaus.plexus:plexus-utils:3.3.0=checkstyle
6565
org.dom4j:dom4j:2.2.0=spotbugs
6666
org.hamcrest:hamcrest:3.0=testCompileClasspath,testRuntimeClasspath
67-
org.jacoco:org.jacoco.agent:0.8.13=jacocoAgent,jacocoAnt
68-
org.jacoco:org.jacoco.ant:0.8.13=jacocoAnt
69-
org.jacoco:org.jacoco.core:0.8.13=jacocoAnt
70-
org.jacoco:org.jacoco.report:0.8.13=jacocoAnt
67+
org.jacoco:org.jacoco.agent:0.8.8=jacocoAgent,jacocoAnt
68+
org.jacoco:org.jacoco.ant:0.8.8=jacocoAnt
69+
org.jacoco:org.jacoco.core:0.8.8=jacocoAnt
70+
org.jacoco:org.jacoco.report:0.8.8=jacocoAnt
7171
org.javassist:javassist:3.28.0-GA=checkstyle
7272
org.jspecify:jspecify:1.0.0=checkstyle
7373
org.junit.jupiter:junit-jupiter-api:5.14.0=testCompileClasspath,testRuntimeClasspath
7474
org.junit.platform:junit-platform-commons:1.14.0=testCompileClasspath,testRuntimeClasspath
7575
org.junit.platform:junit-platform-engine:1.14.0=testCompileClasspath,testRuntimeClasspath
7676
org.junit:junit-bom:5.14.0=runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
77-
org.mockito:mockito-core:5.21.0=testCompileClasspath,testRuntimeClasspath
77+
org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath
78+
org.mockito:mockito-inline:5.2.0=testCompileClasspath,testRuntimeClasspath
7879
org.objenesis:objenesis:3.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7980
org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath
81+
org.ow2.asm:asm-analysis:9.2=jacocoAnt
8082
org.ow2.asm:asm-analysis:9.9=spotbugs
81-
org.ow2.asm:asm-commons:9.8=jacocoAnt
83+
org.ow2.asm:asm-commons:9.2=jacocoAnt
8284
org.ow2.asm:asm-commons:9.9=spotbugs
83-
org.ow2.asm:asm-tree:9.8=jacocoAnt
85+
org.ow2.asm:asm-tree:9.2=jacocoAnt
8486
org.ow2.asm:asm-tree:9.9=spotbugs
8587
org.ow2.asm:asm-util:9.9=spotbugs
86-
org.ow2.asm:asm:9.8=jacocoAnt,pmd
88+
org.ow2.asm:asm:9.2=jacocoAnt
89+
org.ow2.asm:asm:9.8=pmd
8790
org.ow2.asm:asm:9.9=spotbugs
8891
org.pcollections:pcollections:4.0.2=pmd
8992
org.projectlombok:lombok:1.18.42=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
9093
org.reflections:reflections:0.10.2=checkstyle
9194
org.slf4j:jul-to-slf4j:1.7.36=pmd
9295
org.slf4j:slf4j-api:1.7.30=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
9396
org.slf4j:slf4j-api:2.0.17=spotbugs,spotbugsSlf4j
94-
org.slf4j:slf4j-simple:2.0.17=checkstyle,spotbugsSlf4j
97+
org.slf4j:slf4j-simple:2.0.17=spotbugsSlf4j
9598
org.spockframework:spock-bom:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
9699
org.spockframework:spock-core:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
97-
org.xmlresolver:xmlresolver:5.2.2=pmd
98-
org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs
100+
org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd
101+
org.xmlresolver:xmlresolver:5.3.3=spotbugs
99102
org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
100-
empty=spotbugsPlugins
103+
empty=signatures,spotbugsPlugins

context/gradle.lockfile

Lines changed: 31 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ com.github.stephenc.jcip:jcip-annotations:1.0-1=spotbugs
1414
com.google.code.findbugs:jsr305:3.0.2=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
1515
com.google.code.gson:gson:2.13.1=pmd
1616
com.google.code.gson:gson:2.13.2=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
17+
com.google.errorprone:error_prone_annotations:2.36.0=checkstyle
1718
com.google.errorprone:error_prone_annotations:2.38.0=pmd
18-
com.google.errorprone:error_prone_annotations:2.41.0=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
19+
com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
1920
com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2021
com.google.guava:failureaccess:1.0.3=checkstyle
2122
com.google.guava:guava:32.1.3-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
22-
com.google.guava:guava:33.5.0-jre=checkstyle
23+
com.google.guava:guava:33.4.8-jre=checkstyle
2324
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2425
com.google.j2objc:j2objc-annotations:2.8=compileClasspath,testCompileClasspath
25-
com.google.j2objc:j2objc-annotations:3.1=checkstyle
26-
com.puppycrawl.tools:checkstyle:13.0.0=checkstyle
26+
com.google.j2objc:j2objc-annotations:3.0.0=checkstyle
27+
com.puppycrawl.tools:checkstyle:10.25.0=checkstyle
2728
commons-beanutils:commons-beanutils:1.11.0=checkstyle
28-
commons-codec:commons-codec:1.11=checkstyle
29-
commons-codec:commons-codec:1.15=pmd
29+
commons-codec:commons-codec:1.15=checkstyle,pmd
3030
commons-collections:commons-collections:3.2.2=checkstyle
3131
commons-io:commons-io:2.20.0=spotbugs
3232
info.picocli:picocli:4.7.7=checkstyle
@@ -36,10 +36,10 @@ io.opentracing:opentracing-api:0.33.0=compileClasspath,runtimeClasspath,testComp
3636
io.opentracing:opentracing-noop:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3737
io.opentracing:opentracing-util:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3838
jaxen:jaxen:2.0.0=spotbugs
39-
net.bytebuddy:byte-buddy-agent:1.17.7=testCompileClasspath,testRuntimeClasspath
40-
net.bytebuddy:byte-buddy:1.17.7=testCompileClasspath,testRuntimeClasspath
41-
net.sf.saxon:Saxon-HE:12.5=pmd
42-
net.sf.saxon:Saxon-HE:12.9=checkstyle,spotbugs
39+
net.bytebuddy:byte-buddy-agent:1.14.9=testCompileClasspath,testRuntimeClasspath
40+
net.bytebuddy:byte-buddy:1.14.9=testCompileClasspath,testRuntimeClasspath
41+
net.sf.saxon:Saxon-HE:12.5=checkstyle,pmd
42+
net.sf.saxon:Saxon-HE:12.9=spotbugs
4343
net.sourceforge.pmd:pmd-ant:7.16.0=pmd
4444
net.sourceforge.pmd:pmd-core:7.16.0=pmd
4545
net.sourceforge.pmd:pmd-java:7.16.0=pmd
@@ -50,62 +50,65 @@ org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeC
5050
org.apache.commons:commons-text:1.14.0=spotbugs
5151
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
5252
org.apache.commons:commons-text:1.3=checkstyle
53-
org.apache.httpcomponents.client5:httpclient5:5.1.3=pmd
54-
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=pmd
55-
org.apache.httpcomponents.core5:httpcore5:5.1.3=pmd
53+
org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle,pmd
54+
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle,pmd
55+
org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
5656
org.apache.httpcomponents:httpclient:4.5.13=checkstyle
5757
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
58-
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
59-
org.apache.logging.log4j:log4j-core:2.25.2=spotbugs
58+
org.apache.logging.log4j:log4j-api:2.25.3=spotbugs
59+
org.apache.logging.log4j:log4j-core:2.25.3=spotbugs
6060
org.apache.maven.doxia:doxia-core:1.12.0=checkstyle
6161
org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle
6262
org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle
6363
org.apache.maven.doxia:doxia-sink-api:1.12.0=checkstyle
6464
org.apache.xbean:xbean-reflect:3.7=checkstyle
6565
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
6666
org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
67+
org.checkerframework:checker-qual:3.49.3=checkstyle
6768
org.checkerframework:checker-qual:3.49.5=pmd
68-
org.checkerframework:checker-qual:3.52.1=checkstyle
6969
org.codehaus.groovy:groovy:3.0.24=testCompileClasspath,testRuntimeClasspath
7070
org.codehaus.plexus:plexus-classworlds:2.6.0=checkstyle
7171
org.codehaus.plexus:plexus-component-annotations:2.1.0=checkstyle
7272
org.codehaus.plexus:plexus-container-default:2.1.0=checkstyle
7373
org.codehaus.plexus:plexus-utils:3.3.0=checkstyle
7474
org.dom4j:dom4j:2.2.0=spotbugs
7575
org.hamcrest:hamcrest:3.0=testCompileClasspath,testRuntimeClasspath
76-
org.jacoco:org.jacoco.agent:0.8.13=jacocoAgent,jacocoAnt
77-
org.jacoco:org.jacoco.ant:0.8.13=jacocoAnt
78-
org.jacoco:org.jacoco.core:0.8.13=jacocoAnt
79-
org.jacoco:org.jacoco.report:0.8.13=jacocoAnt
76+
org.jacoco:org.jacoco.agent:0.8.8=jacocoAgent,jacocoAnt
77+
org.jacoco:org.jacoco.ant:0.8.8=jacocoAnt
78+
org.jacoco:org.jacoco.core:0.8.8=jacocoAnt
79+
org.jacoco:org.jacoco.report:0.8.8=jacocoAnt
8080
org.javassist:javassist:3.28.0-GA=checkstyle
8181
org.jspecify:jspecify:1.0.0=checkstyle
8282
org.junit.jupiter:junit-jupiter-api:5.14.0=testCompileClasspath,testRuntimeClasspath
8383
org.junit.platform:junit-platform-commons:1.14.0=testCompileClasspath,testRuntimeClasspath
8484
org.junit.platform:junit-platform-engine:1.14.0=testCompileClasspath,testRuntimeClasspath
8585
org.junit:junit-bom:5.14.0=runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
86-
org.mockito:mockito-core:5.21.0=testCompileClasspath,testRuntimeClasspath
86+
org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath
87+
org.mockito:mockito-inline:5.2.0=testCompileClasspath,testRuntimeClasspath
8788
org.objenesis:objenesis:3.3=runtimeClasspath,testRuntimeClasspath
8889
org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath
90+
org.ow2.asm:asm-analysis:9.2=jacocoAnt
8991
org.ow2.asm:asm-analysis:9.9=spotbugs
90-
org.ow2.asm:asm-commons:9.8=jacocoAnt
92+
org.ow2.asm:asm-commons:9.2=jacocoAnt
9193
org.ow2.asm:asm-commons:9.9=spotbugs
92-
org.ow2.asm:asm-tree:9.8=jacocoAnt
94+
org.ow2.asm:asm-tree:9.2=jacocoAnt
9395
org.ow2.asm:asm-tree:9.9=spotbugs
9496
org.ow2.asm:asm-util:9.9=spotbugs
95-
org.ow2.asm:asm:9.8=jacocoAnt,pmd
97+
org.ow2.asm:asm:9.2=jacocoAnt
98+
org.ow2.asm:asm:9.8=pmd
9699
org.ow2.asm:asm:9.9=spotbugs
97100
org.pcollections:pcollections:4.0.2=pmd
98101
org.projectlombok:lombok:1.18.42=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
99102
org.reflections:reflections:0.10.2=checkstyle
100103
org.slf4j:jul-to-slf4j:1.7.36=pmd
101104
org.slf4j:slf4j-api:1.7.30=runtimeClasspath,testRuntimeClasspath
102105
org.slf4j:slf4j-api:2.0.17=spotbugs,spotbugsSlf4j
103-
org.slf4j:slf4j-simple:2.0.17=checkstyle,spotbugsSlf4j
106+
org.slf4j:slf4j-simple:2.0.17=spotbugsSlf4j
104107
org.spockframework:spock-bom:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
105108
org.spockframework:spock-core:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
106-
org.xmlresolver:xmlresolver:5.2.2=pmd
107-
org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs
109+
org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd
110+
org.xmlresolver:xmlresolver:5.3.3=spotbugs
108111
org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
109112
uk.org.webcompere:system-stubs-core:2.1.5=testCompileClasspath,testRuntimeClasspath
110113
uk.org.webcompere:system-stubs-jupiter:2.1.5=testCompileClasspath,testRuntimeClasspath
111-
empty=spotbugsPlugins
114+
empty=signatures,spotbugsPlugins

0 commit comments

Comments
 (0)