Skip to content

Commit dab84e8

Browse files
meotchmeotchwilliams
authored andcommitted
revert: "feat!: bump checkstyle, gradle, java, mockito, spotless"
This reverts commit fb973c7. vogueSuppress coppuccino and vogue upgrades
1 parent 1928a40 commit dab84e8

File tree

20 files changed

+384
-317
lines changed

20 files changed

+384
-317
lines changed

.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: 12 additions & 32 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,25 +29,15 @@ 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

4440
configurations.all {
45-
//remove after upgrading checkstyle 13.0.0
46-
resolutionStrategy.eachDependency { details ->
47-
if (details.requested.group == "org.apache.commons" && details.requested.name == "commons-lang3") {
48-
details.useVersion "3.18.0"
49-
}
50-
}
5141
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
5242
}
5343
}
@@ -61,7 +51,7 @@ subprojects {
6151
apply plugin: "io.freefair.lombok"
6252

6353
ext {
64-
mockitoVersion = "5.21.0"
54+
mockitoVersion = "[5.0,6.0)"
6555
spockVersion = "2.4-M6-groovy-3.0"
6656
junitVersion = "5.14.0"
6757
}
@@ -99,6 +89,7 @@ subprojects {
9989
}
10090
}
10191
api "com.datadoghq:dd-trace-api:1.38.0"
92+
api "commons-lang:commons-lang:2.6"
10293
api "org.slf4j:slf4j-api:1.7.30"
10394
api "org.apache.httpcomponents:httpclient:4.5.13"
10495

@@ -112,19 +103,14 @@ subprojects {
112103
api "com.sun.xml.bind:jaxb-impl:4.0.6!!"
113104
api "org.glassfish.jaxb:jaxb-runtime:4.0.6!!"
114105
// -----------------------------------------------------------------
115-
116106
}
117107

118-
testImplementation "org.mockito:mockito-core:${project.ext.mockitoVersion}"
108+
testImplementation "org.mockito:mockito-inline:${project.ext.mockitoVersion}"
119109
testImplementation "org.spockframework:spock-core:${project.ext.spockVersion}"
120110
testImplementation "org.junit.jupiter:junit-jupiter-api:${project.ext.junitVersion}"
121111
}
122112

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-
}
113+
test { useJUnitPlatform() }
128114

129115
compileJava { options.compilerArgs << "-parameters" }
130116

@@ -145,12 +131,12 @@ subprojects {
145131
}
146132

147133
task sourcesJar(type: Jar, dependsOn: classes) {
148-
archiveClassifier = "sources"
134+
classifier = "sources"
149135
from sourceSets.main.allSource
150136
}
151137

152138
task packageJavadoc(type: Jar) {
153-
archiveClassifier = "javadoc"
139+
classifier = "javadoc"
154140
from javadoc
155141
}
156142

@@ -244,12 +230,6 @@ task spotlessApply {
244230
}
245231
}
246232

247-
sourceSets {
248-
main {
249-
java { srcDir "build/generated/sources/annotationProcessor" }
250-
}
251-
}
252-
253233
task subdependencies {
254234
subprojects.each {
255235
if (it.name != platformProject) {
@@ -264,6 +244,6 @@ task subdependencies {
264244
project.tasks.getByPath("dependencies").finalizedBy("subdependencies")
265245

266246
wrapper {
267-
gradleVersion = "8.14.3"
247+
gradleVersion = "7.6.4"
268248
distributionType = Wrapper.DistributionType.ALL
269249
}

common/gradle.lockfile

Lines changed: 33 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -9,41 +9,44 @@ 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
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=pmd
41+
org.apache.commons:commons-lang3:3.19.0=spotbugs
42+
org.apache.commons:commons-lang3:3.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
43+
org.apache.commons:commons-lang3:3.8.1=checkstyle
4144
org.apache.commons:commons-text:1.14.0=spotbugs
4245
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4346
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
47+
org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle,pmd
48+
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle,pmd
49+
org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
4750
org.apache.httpcomponents:httpclient:4.5.13=checkstyle
4851
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
4952
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
@@ -55,46 +58,49 @@ org.apache.maven.doxia:doxia-sink-api:1.12.0=checkstyle
5558
org.apache.xbean:xbean-reflect:3.7=checkstyle
5659
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
5760
org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
61+
org.checkerframework:checker-qual:3.49.3=checkstyle
5862
org.checkerframework:checker-qual:3.49.5=pmd
59-
org.checkerframework:checker-qual:3.52.1=checkstyle
6063
org.codehaus.groovy:groovy:3.0.24=testCompileClasspath,testRuntimeClasspath
6164
org.codehaus.plexus:plexus-classworlds:2.6.0=checkstyle
6265
org.codehaus.plexus:plexus-component-annotations:2.1.0=checkstyle
6366
org.codehaus.plexus:plexus-container-default:2.1.0=checkstyle
6467
org.codehaus.plexus:plexus-utils:3.3.0=checkstyle
6568
org.dom4j:dom4j:2.2.0=spotbugs
6669
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
70+
org.jacoco:org.jacoco.agent:0.8.8=jacocoAgent,jacocoAnt
71+
org.jacoco:org.jacoco.ant:0.8.8=jacocoAnt
72+
org.jacoco:org.jacoco.core:0.8.8=jacocoAnt
73+
org.jacoco:org.jacoco.report:0.8.8=jacocoAnt
7174
org.javassist:javassist:3.28.0-GA=checkstyle
7275
org.jspecify:jspecify:1.0.0=checkstyle
7376
org.junit.jupiter:junit-jupiter-api:5.14.0=testCompileClasspath,testRuntimeClasspath
7477
org.junit.platform:junit-platform-commons:1.14.0=testCompileClasspath,testRuntimeClasspath
7578
org.junit.platform:junit-platform-engine:1.14.0=testCompileClasspath,testRuntimeClasspath
7679
org.junit:junit-bom:5.14.0=runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
77-
org.mockito:mockito-core:5.21.0=testCompileClasspath,testRuntimeClasspath
80+
org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath
81+
org.mockito:mockito-inline:5.2.0=testCompileClasspath,testRuntimeClasspath
7882
org.objenesis:objenesis:3.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7983
org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath
84+
org.ow2.asm:asm-analysis:9.2=jacocoAnt
8085
org.ow2.asm:asm-analysis:9.9=spotbugs
81-
org.ow2.asm:asm-commons:9.8=jacocoAnt
86+
org.ow2.asm:asm-commons:9.2=jacocoAnt
8287
org.ow2.asm:asm-commons:9.9=spotbugs
83-
org.ow2.asm:asm-tree:9.8=jacocoAnt
88+
org.ow2.asm:asm-tree:9.2=jacocoAnt
8489
org.ow2.asm:asm-tree:9.9=spotbugs
8590
org.ow2.asm:asm-util:9.9=spotbugs
86-
org.ow2.asm:asm:9.8=jacocoAnt,pmd
91+
org.ow2.asm:asm:9.2=jacocoAnt
92+
org.ow2.asm:asm:9.8=pmd
8793
org.ow2.asm:asm:9.9=spotbugs
8894
org.pcollections:pcollections:4.0.2=pmd
8995
org.projectlombok:lombok:1.18.42=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
9096
org.reflections:reflections:0.10.2=checkstyle
9197
org.slf4j:jul-to-slf4j:1.7.36=pmd
9298
org.slf4j:slf4j-api:1.7.30=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
9399
org.slf4j:slf4j-api:2.0.17=spotbugs,spotbugsSlf4j
94-
org.slf4j:slf4j-simple:2.0.17=checkstyle,spotbugsSlf4j
100+
org.slf4j:slf4j-simple:2.0.17=spotbugsSlf4j
95101
org.spockframework:spock-bom:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
96102
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
103+
org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd
104+
org.xmlresolver:xmlresolver:5.3.3=spotbugs
99105
org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
100-
empty=spotbugsPlugins
106+
empty=signatures,spotbugsPlugins

context/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ dependencies {
55
implementation project(":common")
66
implementation "io.opentracing:opentracing-api"
77
implementation "io.opentracing:opentracing-util"
8+
implementation "commons-lang:commons-lang"
89
implementation "io.github.cdimascio:dotenv-java:[2.0,3.0)" // provides access to environment variables, including .env files
910

1011
testImplementation "uk.org.webcompere:system-stubs-core:2.1.5" // used to test with system environment variables

context/gradle.lockfile

Lines changed: 34 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -14,45 +14,49 @@ 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
32+
commons-lang:commons-lang:2.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3233
info.picocli:picocli:4.7.7=checkstyle
3334
io.github.cdimascio:dotenv-java:2.3.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3435
io.leangen.geantyref:geantyref:1.3.16=testRuntimeClasspath
3536
io.opentracing:opentracing-api:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3637
io.opentracing:opentracing-noop:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3738
io.opentracing:opentracing-util:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3839
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
40+
net.bytebuddy:byte-buddy-agent:1.14.9=testCompileClasspath,testRuntimeClasspath
41+
net.bytebuddy:byte-buddy:1.14.9=testCompileClasspath,testRuntimeClasspath
42+
net.sf.saxon:Saxon-HE:12.5=checkstyle,pmd
43+
net.sf.saxon:Saxon-HE:12.9=spotbugs
4344
net.sourceforge.pmd:pmd-ant:7.16.0=pmd
4445
net.sourceforge.pmd:pmd-core:7.16.0=pmd
4546
net.sourceforge.pmd:pmd-java:7.16.0=pmd
4647
org.antlr:antlr4-runtime:4.13.2=checkstyle
4748
org.antlr:antlr4-runtime:4.9.3=pmd
4849
org.apache.bcel:bcel:6.11.0=spotbugs
49-
org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
50+
org.apache.commons:commons-lang3:3.18.0=pmd
51+
org.apache.commons:commons-lang3:3.19.0=spotbugs
52+
org.apache.commons:commons-lang3:3.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
53+
org.apache.commons:commons-lang3:3.8.1=checkstyle
5054
org.apache.commons:commons-text:1.14.0=spotbugs
5155
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
5256
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
57+
org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle,pmd
58+
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle,pmd
59+
org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
5660
org.apache.httpcomponents:httpclient:4.5.13=checkstyle
5761
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
5862
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
@@ -64,48 +68,51 @@ org.apache.maven.doxia:doxia-sink-api:1.12.0=checkstyle
6468
org.apache.xbean:xbean-reflect:3.7=checkstyle
6569
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
6670
org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
71+
org.checkerframework:checker-qual:3.49.3=checkstyle
6772
org.checkerframework:checker-qual:3.49.5=pmd
68-
org.checkerframework:checker-qual:3.52.1=checkstyle
6973
org.codehaus.groovy:groovy:3.0.24=testCompileClasspath,testRuntimeClasspath
7074
org.codehaus.plexus:plexus-classworlds:2.6.0=checkstyle
7175
org.codehaus.plexus:plexus-component-annotations:2.1.0=checkstyle
7276
org.codehaus.plexus:plexus-container-default:2.1.0=checkstyle
7377
org.codehaus.plexus:plexus-utils:3.3.0=checkstyle
7478
org.dom4j:dom4j:2.2.0=spotbugs
7579
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
80+
org.jacoco:org.jacoco.agent:0.8.8=jacocoAgent,jacocoAnt
81+
org.jacoco:org.jacoco.ant:0.8.8=jacocoAnt
82+
org.jacoco:org.jacoco.core:0.8.8=jacocoAnt
83+
org.jacoco:org.jacoco.report:0.8.8=jacocoAnt
8084
org.javassist:javassist:3.28.0-GA=checkstyle
8185
org.jspecify:jspecify:1.0.0=checkstyle
8286
org.junit.jupiter:junit-jupiter-api:5.14.0=testCompileClasspath,testRuntimeClasspath
8387
org.junit.platform:junit-platform-commons:1.14.0=testCompileClasspath,testRuntimeClasspath
8488
org.junit.platform:junit-platform-engine:1.14.0=testCompileClasspath,testRuntimeClasspath
8589
org.junit:junit-bom:5.14.0=runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
86-
org.mockito:mockito-core:5.21.0=testCompileClasspath,testRuntimeClasspath
90+
org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath
91+
org.mockito:mockito-inline:5.2.0=testCompileClasspath,testRuntimeClasspath
8792
org.objenesis:objenesis:3.3=runtimeClasspath,testRuntimeClasspath
8893
org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath
94+
org.ow2.asm:asm-analysis:9.2=jacocoAnt
8995
org.ow2.asm:asm-analysis:9.9=spotbugs
90-
org.ow2.asm:asm-commons:9.8=jacocoAnt
96+
org.ow2.asm:asm-commons:9.2=jacocoAnt
9197
org.ow2.asm:asm-commons:9.9=spotbugs
92-
org.ow2.asm:asm-tree:9.8=jacocoAnt
98+
org.ow2.asm:asm-tree:9.2=jacocoAnt
9399
org.ow2.asm:asm-tree:9.9=spotbugs
94100
org.ow2.asm:asm-util:9.9=spotbugs
95-
org.ow2.asm:asm:9.8=jacocoAnt,pmd
101+
org.ow2.asm:asm:9.2=jacocoAnt
102+
org.ow2.asm:asm:9.8=pmd
96103
org.ow2.asm:asm:9.9=spotbugs
97104
org.pcollections:pcollections:4.0.2=pmd
98105
org.projectlombok:lombok:1.18.42=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
99106
org.reflections:reflections:0.10.2=checkstyle
100107
org.slf4j:jul-to-slf4j:1.7.36=pmd
101108
org.slf4j:slf4j-api:1.7.30=runtimeClasspath,testRuntimeClasspath
102109
org.slf4j:slf4j-api:2.0.17=spotbugs,spotbugsSlf4j
103-
org.slf4j:slf4j-simple:2.0.17=checkstyle,spotbugsSlf4j
110+
org.slf4j:slf4j-simple:2.0.17=spotbugsSlf4j
104111
org.spockframework:spock-bom:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
105112
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
113+
org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd
114+
org.xmlresolver:xmlresolver:5.3.3=spotbugs
108115
org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
109116
uk.org.webcompere:system-stubs-core:2.1.5=testCompileClasspath,testRuntimeClasspath
110117
uk.org.webcompere:system-stubs-jupiter:2.1.5=testCompileClasspath,testRuntimeClasspath
111-
empty=spotbugsPlugins
118+
empty=signatures,spotbugsPlugins

context/src/main/java/com/mx/path/core/context/store/StoreLock.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import com.mx.path.core.common.process.Lock;
1212
import com.mx.path.core.common.store.Store;
1313

14-
import org.apache.commons.lang3.RandomStringUtils;
14+
import org.apache.commons.lang.RandomStringUtils;
1515

1616
/**
1717
* Uses a {@link Store} to provide global mutex operations.

0 commit comments

Comments
 (0)