Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ jobs:
uses: mxenabled/path-tools/.github/workflows/ci.yml@master
with:
force: ${{ inputs.force != '' && inputs.force }}
java-version: '21'
44 changes: 32 additions & 12 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
plugins {
id "idea"
id "com.github.mxenabled.coppuccino" version "5.+" apply false
id "com.github.mxenabled.vogue" version "2.+"
id "io.freefair.lombok" version "8.+" apply false
id "com.github.mxenabled.coppuccino" version "6.+" apply false
id "com.github.mxenabled.vogue" version "3.+"
id "io.freefair.lombok" version "8.14.3" apply false
id "io.github.gradle-nexus.publish-plugin" version "1.1.+"
}

Expand All @@ -29,15 +29,25 @@ allprojects {
group "com.mx.path-core"
description "MX Path Core"
version rootProject.version
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}

repositories {
mavenCentral()
mavenLocal()
}

configurations.all {
//remove after upgrading checkstyle 13.0.0
resolutionStrategy.eachDependency { details ->
if (details.requested.group == "org.apache.commons" && details.requested.name == "commons-lang3") {
details.useVersion "3.18.0"
}
}
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
}
Expand All @@ -51,7 +61,7 @@ subprojects {
apply plugin: "io.freefair.lombok"

ext {
mockitoVersion = "[5.0,6.0)"
mockitoVersion = "5.21.0"
spockVersion = "2.4-M6-groovy-3.0"
junitVersion = "5.14.0"
}
Expand Down Expand Up @@ -89,7 +99,6 @@ subprojects {
}
}
api "com.datadoghq:dd-trace-api:1.38.0"
api "commons-lang:commons-lang:2.6"
api "org.slf4j:slf4j-api:1.7.30"
api "org.apache.httpcomponents:httpclient:4.5.13"

Expand All @@ -103,14 +112,19 @@ subprojects {
api "com.sun.xml.bind:jaxb-impl:4.0.6!!"
api "org.glassfish.jaxb:jaxb-runtime:4.0.6!!"
// -----------------------------------------------------------------

}

testImplementation "org.mockito:mockito-inline:${project.ext.mockitoVersion}"
testImplementation "org.mockito:mockito-core:${project.ext.mockitoVersion}"
testImplementation "org.spockframework:spock-core:${project.ext.spockVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-api:${project.ext.junitVersion}"
}

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

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

Expand All @@ -131,12 +145,12 @@ subprojects {
}

task sourcesJar(type: Jar, dependsOn: classes) {
classifier = "sources"
archiveClassifier = "sources"
from sourceSets.main.allSource
}

task packageJavadoc(type: Jar) {
classifier = "javadoc"
archiveClassifier = "javadoc"
from javadoc
}

Expand Down Expand Up @@ -230,6 +244,12 @@ task spotlessApply {
}
}

sourceSets {
main {
java { srcDir "build/generated/sources/annotationProcessor" }
}
}

task subdependencies {
subprojects.each {
if (it.name != platformProject) {
Expand All @@ -244,6 +264,6 @@ task subdependencies {
project.tasks.getByPath("dependencies").finalizedBy("subdependencies")

wrapper {
gradleVersion = "7.6.4"
gradleVersion = "8.14.3"
distributionType = Wrapper.DistributionType.ALL
}
60 changes: 27 additions & 33 deletions common/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,44 +9,41 @@ com.github.stephenc.jcip:jcip-annotations:1.0-1=spotbugs
com.google.code.findbugs:jsr305:3.0.2=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
com.google.code.gson:gson:2.13.1=pmd
com.google.code.gson:gson:2.13.2=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
com.google.errorprone:error_prone_annotations:2.36.0=checkstyle
com.google.errorprone:error_prone_annotations:2.38.0=pmd
com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
com.google.errorprone:error_prone_annotations:2.41.0=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.google.guava:failureaccess:1.0.3=checkstyle
com.google.guava:guava:32.1.3-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.google.guava:guava:33.4.8-jre=checkstyle
com.google.guava:guava:33.5.0-jre=checkstyle
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.google.j2objc:j2objc-annotations:2.8=compileClasspath,testCompileClasspath
com.google.j2objc:j2objc-annotations:3.0.0=checkstyle
com.puppycrawl.tools:checkstyle:10.25.0=checkstyle
com.google.j2objc:j2objc-annotations:3.1=checkstyle
com.puppycrawl.tools:checkstyle:13.0.0=checkstyle
commons-beanutils:commons-beanutils:1.11.0=checkstyle
commons-codec:commons-codec:1.15=checkstyle,pmd
commons-codec:commons-codec:1.11=checkstyle
commons-codec:commons-codec:1.15=pmd
commons-collections:commons-collections:3.2.2=checkstyle
commons-io:commons-io:2.20.0=spotbugs
info.picocli:picocli:4.7.7=checkstyle
io.leangen.geantyref:geantyref:1.3.16=testRuntimeClasspath
jaxen:jaxen:2.0.0=spotbugs
net.bytebuddy:byte-buddy-agent:1.14.1=testCompileClasspath,testRuntimeClasspath
net.bytebuddy:byte-buddy:1.14.1=testCompileClasspath,testRuntimeClasspath
net.sf.saxon:Saxon-HE:12.5=checkstyle,pmd
net.sf.saxon:Saxon-HE:12.9=spotbugs
net.bytebuddy:byte-buddy-agent:1.17.7=testCompileClasspath,testRuntimeClasspath
net.bytebuddy:byte-buddy:1.17.7=testCompileClasspath,testRuntimeClasspath
net.sf.saxon:Saxon-HE:12.5=pmd
net.sf.saxon:Saxon-HE:12.9=checkstyle,spotbugs
net.sourceforge.pmd:pmd-ant:7.16.0=pmd
net.sourceforge.pmd:pmd-core:7.16.0=pmd
net.sourceforge.pmd:pmd-java:7.16.0=pmd
org.antlr:antlr4-runtime:4.13.2=checkstyle
org.antlr:antlr4-runtime:4.9.3=pmd
org.apache.bcel:bcel:6.11.0=spotbugs
org.apache.commons:commons-lang3:3.18.0=pmd
org.apache.commons:commons-lang3:3.19.0=spotbugs
org.apache.commons:commons-lang3:3.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
org.apache.commons:commons-lang3:3.8.1=checkstyle
org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
org.apache.commons:commons-text:1.14.0=spotbugs
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
org.apache.commons:commons-text:1.3=checkstyle
org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle,pmd
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle,pmd
org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
org.apache.httpcomponents.client5:httpclient5:5.1.3=pmd
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=pmd
org.apache.httpcomponents.core5:httpcore5:5.1.3=pmd
org.apache.httpcomponents:httpclient:4.5.13=checkstyle
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
Expand All @@ -58,49 +55,46 @@ org.apache.maven.doxia:doxia-sink-api:1.12.0=checkstyle
org.apache.xbean:xbean-reflect:3.7=checkstyle
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
org.checkerframework:checker-qual:3.49.3=checkstyle
org.checkerframework:checker-qual:3.49.5=pmd
org.checkerframework:checker-qual:3.52.1=checkstyle
org.codehaus.groovy:groovy:3.0.24=testCompileClasspath,testRuntimeClasspath
org.codehaus.plexus:plexus-classworlds:2.6.0=checkstyle
org.codehaus.plexus:plexus-component-annotations:2.1.0=checkstyle
org.codehaus.plexus:plexus-container-default:2.1.0=checkstyle
org.codehaus.plexus:plexus-utils:3.3.0=checkstyle
org.dom4j:dom4j:2.2.0=spotbugs
org.hamcrest:hamcrest:3.0=testCompileClasspath,testRuntimeClasspath
org.jacoco:org.jacoco.agent:0.8.8=jacocoAgent,jacocoAnt
org.jacoco:org.jacoco.ant:0.8.8=jacocoAnt
org.jacoco:org.jacoco.core:0.8.8=jacocoAnt
org.jacoco:org.jacoco.report:0.8.8=jacocoAnt
org.jacoco:org.jacoco.agent:0.8.13=jacocoAgent,jacocoAnt
org.jacoco:org.jacoco.ant:0.8.13=jacocoAnt
org.jacoco:org.jacoco.core:0.8.13=jacocoAnt
org.jacoco:org.jacoco.report:0.8.13=jacocoAnt
org.javassist:javassist:3.28.0-GA=checkstyle
org.jspecify:jspecify:1.0.0=checkstyle
org.junit.jupiter:junit-jupiter-api:5.14.0=testCompileClasspath,testRuntimeClasspath
org.junit.platform:junit-platform-commons:1.14.0=testCompileClasspath,testRuntimeClasspath
org.junit.platform:junit-platform-engine:1.14.0=testCompileClasspath,testRuntimeClasspath
org.junit:junit-bom:5.14.0=runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath
org.mockito:mockito-inline:5.2.0=testCompileClasspath,testRuntimeClasspath
org.mockito:mockito-core:5.21.0=testCompileClasspath,testRuntimeClasspath
org.objenesis:objenesis:3.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath
org.ow2.asm:asm-analysis:9.2=jacocoAnt
org.ow2.asm:asm-analysis:9.9=spotbugs
org.ow2.asm:asm-commons:9.2=jacocoAnt
org.ow2.asm:asm-commons:9.8=jacocoAnt
org.ow2.asm:asm-commons:9.9=spotbugs
org.ow2.asm:asm-tree:9.2=jacocoAnt
org.ow2.asm:asm-tree:9.8=jacocoAnt
org.ow2.asm:asm-tree:9.9=spotbugs
org.ow2.asm:asm-util:9.9=spotbugs
org.ow2.asm:asm:9.2=jacocoAnt
org.ow2.asm:asm:9.8=pmd
org.ow2.asm:asm:9.8=jacocoAnt,pmd
org.ow2.asm:asm:9.9=spotbugs
org.pcollections:pcollections:4.0.2=pmd
org.projectlombok:lombok:1.18.42=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
org.reflections:reflections:0.10.2=checkstyle
org.slf4j:jul-to-slf4j:1.7.36=pmd
org.slf4j:slf4j-api:1.7.30=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
org.slf4j:slf4j-api:2.0.17=spotbugs,spotbugsSlf4j
org.slf4j:slf4j-simple:2.0.17=spotbugsSlf4j
org.slf4j:slf4j-simple:2.0.17=checkstyle,spotbugsSlf4j
org.spockframework:spock-bom:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
org.spockframework:spock-core:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd
org.xmlresolver:xmlresolver:5.3.3=spotbugs
org.xmlresolver:xmlresolver:5.2.2=pmd
org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs
org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
empty=signatures,spotbugsPlugins
empty=spotbugsPlugins
1 change: 0 additions & 1 deletion context/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ dependencies {
implementation project(":common")
implementation "io.opentracing:opentracing-api"
implementation "io.opentracing:opentracing-util"
implementation "commons-lang:commons-lang"
implementation "io.github.cdimascio:dotenv-java:[2.0,3.0)" // provides access to environment variables, including .env files

testImplementation "uk.org.webcompere:system-stubs-core:2.1.5" // used to test with system environment variables
Expand Down
61 changes: 27 additions & 34 deletions context/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,49 +14,45 @@ com.github.stephenc.jcip:jcip-annotations:1.0-1=spotbugs
com.google.code.findbugs:jsr305:3.0.2=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
com.google.code.gson:gson:2.13.1=pmd
com.google.code.gson:gson:2.13.2=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
com.google.errorprone:error_prone_annotations:2.36.0=checkstyle
com.google.errorprone:error_prone_annotations:2.38.0=pmd
com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
com.google.errorprone:error_prone_annotations:2.41.0=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.google.guava:failureaccess:1.0.3=checkstyle
com.google.guava:guava:32.1.3-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.google.guava:guava:33.4.8-jre=checkstyle
com.google.guava:guava:33.5.0-jre=checkstyle
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.google.j2objc:j2objc-annotations:2.8=compileClasspath,testCompileClasspath
com.google.j2objc:j2objc-annotations:3.0.0=checkstyle
com.puppycrawl.tools:checkstyle:10.25.0=checkstyle
com.google.j2objc:j2objc-annotations:3.1=checkstyle
com.puppycrawl.tools:checkstyle:13.0.0=checkstyle
commons-beanutils:commons-beanutils:1.11.0=checkstyle
commons-codec:commons-codec:1.15=checkstyle,pmd
commons-codec:commons-codec:1.11=checkstyle
commons-codec:commons-codec:1.15=pmd
commons-collections:commons-collections:3.2.2=checkstyle
commons-io:commons-io:2.20.0=spotbugs
commons-lang:commons-lang:2.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
info.picocli:picocli:4.7.7=checkstyle
io.github.cdimascio:dotenv-java:2.3.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
io.leangen.geantyref:geantyref:1.3.16=testRuntimeClasspath
io.opentracing:opentracing-api:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
io.opentracing:opentracing-noop:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
io.opentracing:opentracing-util:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
jaxen:jaxen:2.0.0=spotbugs
net.bytebuddy:byte-buddy-agent:1.14.9=testCompileClasspath,testRuntimeClasspath
net.bytebuddy:byte-buddy:1.14.9=testCompileClasspath,testRuntimeClasspath
net.sf.saxon:Saxon-HE:12.5=checkstyle,pmd
net.sf.saxon:Saxon-HE:12.9=spotbugs
net.bytebuddy:byte-buddy-agent:1.17.7=testCompileClasspath,testRuntimeClasspath
net.bytebuddy:byte-buddy:1.17.7=testCompileClasspath,testRuntimeClasspath
net.sf.saxon:Saxon-HE:12.5=pmd
net.sf.saxon:Saxon-HE:12.9=checkstyle,spotbugs
net.sourceforge.pmd:pmd-ant:7.16.0=pmd
net.sourceforge.pmd:pmd-core:7.16.0=pmd
net.sourceforge.pmd:pmd-java:7.16.0=pmd
org.antlr:antlr4-runtime:4.13.2=checkstyle
org.antlr:antlr4-runtime:4.9.3=pmd
org.apache.bcel:bcel:6.11.0=spotbugs
org.apache.commons:commons-lang3:3.18.0=pmd
org.apache.commons:commons-lang3:3.19.0=spotbugs
org.apache.commons:commons-lang3:3.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
org.apache.commons:commons-lang3:3.8.1=checkstyle
org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
org.apache.commons:commons-text:1.14.0=spotbugs
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
org.apache.commons:commons-text:1.3=checkstyle
org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle,pmd
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle,pmd
org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
org.apache.httpcomponents.client5:httpclient5:5.1.3=pmd
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=pmd
org.apache.httpcomponents.core5:httpcore5:5.1.3=pmd
org.apache.httpcomponents:httpclient:4.5.13=checkstyle
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
org.apache.logging.log4j:log4j-api:2.25.2=spotbugs
Expand All @@ -68,51 +64,48 @@ org.apache.maven.doxia:doxia-sink-api:1.12.0=checkstyle
org.apache.xbean:xbean-reflect:3.7=checkstyle
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
org.checkerframework:checker-qual:3.49.3=checkstyle
org.checkerframework:checker-qual:3.49.5=pmd
org.checkerframework:checker-qual:3.52.1=checkstyle
org.codehaus.groovy:groovy:3.0.24=testCompileClasspath,testRuntimeClasspath
org.codehaus.plexus:plexus-classworlds:2.6.0=checkstyle
org.codehaus.plexus:plexus-component-annotations:2.1.0=checkstyle
org.codehaus.plexus:plexus-container-default:2.1.0=checkstyle
org.codehaus.plexus:plexus-utils:3.3.0=checkstyle
org.dom4j:dom4j:2.2.0=spotbugs
org.hamcrest:hamcrest:3.0=testCompileClasspath,testRuntimeClasspath
org.jacoco:org.jacoco.agent:0.8.8=jacocoAgent,jacocoAnt
org.jacoco:org.jacoco.ant:0.8.8=jacocoAnt
org.jacoco:org.jacoco.core:0.8.8=jacocoAnt
org.jacoco:org.jacoco.report:0.8.8=jacocoAnt
org.jacoco:org.jacoco.agent:0.8.13=jacocoAgent,jacocoAnt
org.jacoco:org.jacoco.ant:0.8.13=jacocoAnt
org.jacoco:org.jacoco.core:0.8.13=jacocoAnt
org.jacoco:org.jacoco.report:0.8.13=jacocoAnt
org.javassist:javassist:3.28.0-GA=checkstyle
org.jspecify:jspecify:1.0.0=checkstyle
org.junit.jupiter:junit-jupiter-api:5.14.0=testCompileClasspath,testRuntimeClasspath
org.junit.platform:junit-platform-commons:1.14.0=testCompileClasspath,testRuntimeClasspath
org.junit.platform:junit-platform-engine:1.14.0=testCompileClasspath,testRuntimeClasspath
org.junit:junit-bom:5.14.0=runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath
org.mockito:mockito-inline:5.2.0=testCompileClasspath,testRuntimeClasspath
org.mockito:mockito-core:5.21.0=testCompileClasspath,testRuntimeClasspath
org.objenesis:objenesis:3.3=runtimeClasspath,testRuntimeClasspath
org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath
org.ow2.asm:asm-analysis:9.2=jacocoAnt
org.ow2.asm:asm-analysis:9.9=spotbugs
org.ow2.asm:asm-commons:9.2=jacocoAnt
org.ow2.asm:asm-commons:9.8=jacocoAnt
org.ow2.asm:asm-commons:9.9=spotbugs
org.ow2.asm:asm-tree:9.2=jacocoAnt
org.ow2.asm:asm-tree:9.8=jacocoAnt
org.ow2.asm:asm-tree:9.9=spotbugs
org.ow2.asm:asm-util:9.9=spotbugs
org.ow2.asm:asm:9.2=jacocoAnt
org.ow2.asm:asm:9.8=pmd
org.ow2.asm:asm:9.8=jacocoAnt,pmd
org.ow2.asm:asm:9.9=spotbugs
org.pcollections:pcollections:4.0.2=pmd
org.projectlombok:lombok:1.18.42=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
org.reflections:reflections:0.10.2=checkstyle
org.slf4j:jul-to-slf4j:1.7.36=pmd
org.slf4j:slf4j-api:1.7.30=runtimeClasspath,testRuntimeClasspath
org.slf4j:slf4j-api:2.0.17=spotbugs,spotbugsSlf4j
org.slf4j:slf4j-simple:2.0.17=spotbugsSlf4j
org.slf4j:slf4j-simple:2.0.17=checkstyle,spotbugsSlf4j
org.spockframework:spock-bom:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
org.spockframework:spock-core:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd
org.xmlresolver:xmlresolver:5.3.3=spotbugs
org.xmlresolver:xmlresolver:5.2.2=pmd
org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs
org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
uk.org.webcompere:system-stubs-core:2.1.5=testCompileClasspath,testRuntimeClasspath
uk.org.webcompere:system-stubs-jupiter:2.1.5=testCompileClasspath,testRuntimeClasspath
empty=signatures,spotbugsPlugins
empty=spotbugsPlugins
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import com.mx.path.core.common.process.Lock;
import com.mx.path.core.common.store.Store;

import org.apache.commons.lang.RandomStringUtils;
import org.apache.commons.lang3.RandomStringUtils;

/**
* Uses a {@link Store} to provide global mutex operations.
Expand Down
Loading