Skip to content

Commit 23f55f0

Browse files
meotchmeotchwilliams
authored andcommitted
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 23f55f0

20 files changed

Lines changed: 346 additions & 301 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: 17 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,24 @@ 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
}
5048
}
51-
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
49+
resolutionStrategy.cacheChangingModulesFor 0, "seconds"
5250
}
5351
}
5452

@@ -61,7 +59,7 @@ subprojects {
6159
apply plugin: "io.freefair.lombok"
6260

6361
ext {
64-
mockitoVersion = "5.21.0"
62+
mockitoVersion = "[5.0,6.0)"
6563
spockVersion = "2.4-M6-groovy-3.0"
6664
junitVersion = "5.14.0"
6765
}
@@ -99,6 +97,7 @@ subprojects {
9997
}
10098
}
10199
api "com.datadoghq:dd-trace-api:1.38.0"
100+
api "commons-lang:commons-lang:2.6"
102101
api "org.slf4j:slf4j-api:1.7.30"
103102
api "org.apache.httpcomponents:httpclient:4.5.13"
104103

@@ -112,19 +111,14 @@ subprojects {
112111
api "com.sun.xml.bind:jaxb-impl:4.0.6!!"
113112
api "org.glassfish.jaxb:jaxb-runtime:4.0.6!!"
114113
// -----------------------------------------------------------------
115-
116114
}
117115

118-
testImplementation "org.mockito:mockito-core:${project.ext.mockitoVersion}"
116+
testImplementation "org.mockito:mockito-inline:${project.ext.mockitoVersion}"
119117
testImplementation "org.spockframework:spock-core:${project.ext.spockVersion}"
120118
testImplementation "org.junit.jupiter:junit-jupiter-api:${project.ext.junitVersion}"
121119
}
122120

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-
}
121+
test { useJUnitPlatform() }
128122

129123
compileJava { options.compilerArgs << "-parameters" }
130124

@@ -145,12 +139,12 @@ subprojects {
145139
}
146140

147141
task sourcesJar(type: Jar, dependsOn: classes) {
148-
archiveClassifier = "sources"
142+
classifier = "sources"
149143
from sourceSets.main.allSource
150144
}
151145

152146
task packageJavadoc(type: Jar) {
153-
archiveClassifier = "javadoc"
147+
classifier = "javadoc"
154148
from javadoc
155149
}
156150

@@ -244,12 +238,6 @@ task spotlessApply {
244238
}
245239
}
246240

247-
sourceSets {
248-
main {
249-
java { srcDir "build/generated/sources/annotationProcessor" }
250-
}
251-
}
252-
253241
task subdependencies {
254242
subprojects.each {
255243
if (it.name != platformProject) {
@@ -264,6 +252,6 @@ task subdependencies {
264252
project.tasks.getByPath("dependencies").finalizedBy("subdependencies")
265253

266254
wrapper {
267-
gradleVersion = "8.14.3"
255+
gradleVersion = "7.6.4"
268256
distributionType = Wrapper.DistributionType.ALL
269257
}

common/gradle.lockfile

Lines changed: 29 additions & 26 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,9 +41,9 @@ 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
4949
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
@@ -55,46 +55,49 @@ 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/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: 30 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -14,32 +14,33 @@ 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
@@ -50,9 +51,9 @@ org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeC
5051
org.apache.commons:commons-text:1.14.0=spotbugs
5152
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
5253
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
54+
org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle,pmd
55+
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle,pmd
56+
org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
5657
org.apache.httpcomponents:httpclient:4.5.13=checkstyle
5758
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
5859
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
@@ -64,48 +65,51 @@ org.apache.maven.doxia:doxia-sink-api:1.12.0=checkstyle
6465
org.apache.xbean:xbean-reflect:3.7=checkstyle
6566
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
6667
org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
68+
org.checkerframework:checker-qual:3.49.3=checkstyle
6769
org.checkerframework:checker-qual:3.49.5=pmd
68-
org.checkerframework:checker-qual:3.52.1=checkstyle
6970
org.codehaus.groovy:groovy:3.0.24=testCompileClasspath,testRuntimeClasspath
7071
org.codehaus.plexus:plexus-classworlds:2.6.0=checkstyle
7172
org.codehaus.plexus:plexus-component-annotations:2.1.0=checkstyle
7273
org.codehaus.plexus:plexus-container-default:2.1.0=checkstyle
7374
org.codehaus.plexus:plexus-utils:3.3.0=checkstyle
7475
org.dom4j:dom4j:2.2.0=spotbugs
7576
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
77+
org.jacoco:org.jacoco.agent:0.8.8=jacocoAgent,jacocoAnt
78+
org.jacoco:org.jacoco.ant:0.8.8=jacocoAnt
79+
org.jacoco:org.jacoco.core:0.8.8=jacocoAnt
80+
org.jacoco:org.jacoco.report:0.8.8=jacocoAnt
8081
org.javassist:javassist:3.28.0-GA=checkstyle
8182
org.jspecify:jspecify:1.0.0=checkstyle
8283
org.junit.jupiter:junit-jupiter-api:5.14.0=testCompileClasspath,testRuntimeClasspath
8384
org.junit.platform:junit-platform-commons:1.14.0=testCompileClasspath,testRuntimeClasspath
8485
org.junit.platform:junit-platform-engine:1.14.0=testCompileClasspath,testRuntimeClasspath
8586
org.junit:junit-bom:5.14.0=runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
86-
org.mockito:mockito-core:5.21.0=testCompileClasspath,testRuntimeClasspath
87+
org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath
88+
org.mockito:mockito-inline:5.2.0=testCompileClasspath,testRuntimeClasspath
8789
org.objenesis:objenesis:3.3=runtimeClasspath,testRuntimeClasspath
8890
org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath
91+
org.ow2.asm:asm-analysis:9.2=jacocoAnt
8992
org.ow2.asm:asm-analysis:9.9=spotbugs
90-
org.ow2.asm:asm-commons:9.8=jacocoAnt
93+
org.ow2.asm:asm-commons:9.2=jacocoAnt
9194
org.ow2.asm:asm-commons:9.9=spotbugs
92-
org.ow2.asm:asm-tree:9.8=jacocoAnt
95+
org.ow2.asm:asm-tree:9.2=jacocoAnt
9396
org.ow2.asm:asm-tree:9.9=spotbugs
9497
org.ow2.asm:asm-util:9.9=spotbugs
95-
org.ow2.asm:asm:9.8=jacocoAnt,pmd
98+
org.ow2.asm:asm:9.2=jacocoAnt
99+
org.ow2.asm:asm:9.8=pmd
96100
org.ow2.asm:asm:9.9=spotbugs
97101
org.pcollections:pcollections:4.0.2=pmd
98102
org.projectlombok:lombok:1.18.42=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
99103
org.reflections:reflections:0.10.2=checkstyle
100104
org.slf4j:jul-to-slf4j:1.7.36=pmd
101105
org.slf4j:slf4j-api:1.7.30=runtimeClasspath,testRuntimeClasspath
102106
org.slf4j:slf4j-api:2.0.17=spotbugs,spotbugsSlf4j
103-
org.slf4j:slf4j-simple:2.0.17=checkstyle,spotbugsSlf4j
107+
org.slf4j:slf4j-simple:2.0.17=spotbugsSlf4j
104108
org.spockframework:spock-bom:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
105109
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
110+
org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd
111+
org.xmlresolver:xmlresolver:5.3.3=spotbugs
108112
org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
109113
uk.org.webcompere:system-stubs-core:2.1.5=testCompileClasspath,testRuntimeClasspath
110114
uk.org.webcompere:system-stubs-jupiter:2.1.5=testCompileClasspath,testRuntimeClasspath
111-
empty=spotbugsPlugins
115+
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)