diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f12772d..5ed70245 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,3 +16,4 @@ jobs: uses: mxenabled/path-tools/.github/workflows/ci.yml@master with: force: ${{ inputs.force != '' && inputs.force }} + java-version: '21' \ No newline at end of file diff --git a/build.gradle b/build.gradle index 4dac52fc..23f672b6 100644 --- a/build.gradle +++ b/build.gradle @@ -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.+" } @@ -29,8 +29,12 @@ 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() @@ -38,6 +42,12 @@ allprojects { } 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' } } @@ -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" } @@ -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" @@ -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" } @@ -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 } @@ -230,6 +244,12 @@ task spotlessApply { } } +sourceSets { + main { + java { srcDir "build/generated/sources/annotationProcessor" } + } +} + task subdependencies { subprojects.each { if (it.name != platformProject) { @@ -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 } diff --git a/common/gradle.lockfile b/common/gradle.lockfile index f0dd571c..56c9ca0b 100644 --- a/common/gradle.lockfile +++ b/common/gradle.lockfile @@ -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 @@ -58,8 +55,8 @@ 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 @@ -67,29 +64,26 @@ 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 @@ -97,10 +91,10 @@ 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 diff --git a/context/build.gradle b/context/build.gradle index 19c3a827..7c4d2c09 100644 --- a/context/build.gradle +++ b/context/build.gradle @@ -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 diff --git a/context/gradle.lockfile b/context/gradle.lockfile index dbda809b..6668ce1c 100644 --- a/context/gradle.lockfile +++ b/context/gradle.lockfile @@ -14,22 +14,21 @@ 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 @@ -37,26 +36,23 @@ io.opentracing:opentracing-api:0.33.0=compileClasspath,runtimeClasspath,testComp 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 @@ -68,8 +64,8 @@ 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 @@ -77,29 +73,26 @@ 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 @@ -107,12 +100,12 @@ 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 diff --git a/context/src/main/java/com/mx/path/core/context/store/StoreLock.java b/context/src/main/java/com/mx/path/core/context/store/StoreLock.java index 5f0e05ef..c65b3a53 100644 --- a/context/src/main/java/com/mx/path/core/context/store/StoreLock.java +++ b/context/src/main/java/com/mx/path/core/context/store/StoreLock.java @@ -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. diff --git a/gateway-generator/gradle.lockfile b/gateway-generator/gradle.lockfile index e121431b..2de93dcc 100644 --- a/gateway-generator/gradle.lockfile +++ b/gateway-generator/gradle.lockfile @@ -19,27 +19,25 @@ com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClas 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.18.0=annotationProcessor -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=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.guava:failureaccess:1.0.3=checkstyle com.google.guava:guava:32.0.1-jre=annotationProcessor,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=annotationProcessor,checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.j2objc:j2objc-annotations:2.8=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -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 com.squareup:javapoet:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.sun.istack:istack-commons-runtime:4.1.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.sun.xml.bind:jaxb-core:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.sun.xml.bind:jaxb-impl:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath commons-beanutils:commons-beanutils:1.11.0=checkstyle -commons-codec:commons-codec:1.11=runtimeClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.15=checkstyle,pmd +commons-codec:commons-codec:1.11=checkstyle,runtimeClasspath,testRuntimeClasspath +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=runtimeClasspath,testRuntimeClasspath commons-logging:commons-logging:1.2=runtimeClasspath,testRuntimeClasspath info.picocli:picocli:4.7.7=checkstyle io.github.cdimascio:dotenv-java:2.3.2=runtimeClasspath,testRuntimeClasspath @@ -51,26 +49,23 @@ jakarta.activation:jakarta.activation-api:2.1.4=compileClasspath,runtimeClasspat jakarta.xml.bind:jakarta.xml.bind-api:4.0.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath jakarta.xml.soap:jakarta.xml.soap-api:3.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,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,runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.13=runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.14=checkstyle @@ -83,8 +78,8 @@ 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.33.0=annotationProcessor,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 @@ -96,29 +91,26 @@ org.glassfish.jaxb:jaxb-core:4.0.6=compileClasspath,runtimeClasspath,testCompile org.glassfish.jaxb:jaxb-runtime:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.glassfish.jaxb:txw2:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath 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,runtimeClasspath,testRuntimeClasspath 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.24=runtimeClasspath,testRuntimeClasspath @@ -127,10 +119,10 @@ org.reflections:reflections:0.10.2=checkstyle,runtimeClasspath,testRuntimeClassp org.slf4j:jul-to-slf4j:1.7.36=pmd org.slf4j:slf4j-api:1.7.32=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 -empty=signatures,spotbugsPlugins +empty=spotbugsPlugins diff --git a/gateway/build.gradle b/gateway/build.gradle index 56fa12bc..7b3d2ceb 100644 --- a/gateway/build.gradle +++ b/gateway/build.gradle @@ -25,7 +25,6 @@ dependencies { implementation "org.slf4j:slf4j-api" implementation "org.apache.httpcomponents:httpclient" - implementation "commons-lang:commons-lang" implementation "org.reflections:reflections:0.10.2" //testing dependencies diff --git a/gateway/gradle.lockfile b/gateway/gradle.lockfile index fcf73b4a..298e93dd 100644 --- a/gateway/gradle.lockfile +++ b/gateway/gradle.lockfile @@ -15,26 +15,24 @@ 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 com.sun.istack:istack-commons-runtime:4.1.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.sun.xml.bind:jaxb-core:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.sun.xml.bind:jaxb-impl:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath commons-beanutils:commons-beanutils:1.11.0=checkstyle -commons-codec:commons-codec:1.11=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.15=checkstyle,pmd +commons-codec:commons-codec:1.11=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +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 commons-logging:commons-logging:1.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath info.picocli:picocli:4.7.7=checkstyle io.github.cdimascio:dotenv-java:2.3.2=runtimeClasspath,testRuntimeClasspath @@ -47,26 +45,23 @@ jakarta.activation:jakarta.activation-api:2.1.4=compileClasspath,runtimeClasspat jakarta.xml.bind:jakarta.xml.bind-api:4.0.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath jakarta.xml.soap:jakarta.xml.soap-api:3.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,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,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.13=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.14=checkstyle @@ -79,8 +74,8 @@ 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 @@ -92,29 +87,26 @@ org.glassfish.jaxb:jaxb-core:4.0.6=compileClasspath,runtimeClasspath,testCompile org.glassfish.jaxb:jaxb-runtime:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.glassfish.jaxb:txw2:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath 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,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath 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 @@ -123,10 +115,10 @@ org.slf4j:jul-to-slf4j:1.7.36=pmd org.slf4j:slf4j-api:1.7.32=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.slf4j:slf4j-api:2.0.17=spotbugs,spotbugsSlf4j org.slf4j:slf4j-simple:1.7.30=testCompileClasspath,testRuntimeClasspath -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 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 5c00f617..37a6725d 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.4-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-all.zip networkTimeout=10000 zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/http/gradle.lockfile b/http/gradle.lockfile index 4c5db98c..860a1fac 100644 --- a/http/gradle.lockfile +++ b/http/gradle.lockfile @@ -15,26 +15,24 @@ 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 com.sun.istack:istack-commons-runtime:4.1.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.sun.xml.bind:jaxb-core:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.sun.xml.bind:jaxb-impl:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath commons-beanutils:commons-beanutils:1.11.0=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.11=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.15=checkstyle,pmd +commons-codec:commons-codec:1.11=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.15=pmd commons-collections:commons-collections:3.2.2=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath commons-io:commons-io:2.20.0=spotbugs -commons-lang:commons-lang:2.6=runtimeClasspath,testRuntimeClasspath commons-logging:commons-logging:1.3.5=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath info.picocli:picocli:4.7.7=checkstyle io.github.cdimascio:dotenv-java:2.3.2=runtimeClasspath,testRuntimeClasspath @@ -47,26 +45,23 @@ jakarta.activation:jakarta.activation-api:2.1.4=compileClasspath,runtimeClasspat jakarta.xml.bind:jakarta.xml.bind-api:4.0.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath jakarta.xml.soap:jakarta.xml.soap-api:3.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,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,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.13=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.14=checkstyle @@ -79,8 +74,8 @@ 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 @@ -92,29 +87,26 @@ org.glassfish.jaxb:jaxb-core:4.0.6=compileClasspath,runtimeClasspath,testCompile org.glassfish.jaxb:jaxb-runtime:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.glassfish.jaxb:txw2:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath 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,runtimeClasspath,testRuntimeClasspath 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 @@ -124,10 +116,10 @@ org.slf4j:slf4j-api:1.7.30=compileClasspath,testCompileClasspath org.slf4j:slf4j-api:1.7.32=runtimeClasspath,testRuntimeClasspath org.slf4j:slf4j-api:2.0.17=spotbugs,spotbugsSlf4j org.slf4j:slf4j-simple:1.7.30=testCompileClasspath,testRuntimeClasspath -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 diff --git a/jitpack.yml b/jitpack.yml index efde7bf2..727c9abd 100644 --- a/jitpack.yml +++ b/jitpack.yml @@ -1,2 +1,2 @@ jdk: - - openjdk17 + - openjdk21 diff --git a/messaging/gradle.lockfile b/messaging/gradle.lockfile index 467d4239..109b406f 100644 --- a/messaging/gradle.lockfile +++ b/messaging/gradle.lockfile @@ -14,22 +14,21 @@ 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=runtimeClasspath,testRuntimeClasspath info.picocli:picocli:4.7.7=checkstyle io.github.cdimascio:dotenv-java:2.3.2=runtimeClasspath,testRuntimeClasspath io.leangen.geantyref:geantyref:1.3.16=testRuntimeClasspath @@ -38,26 +37,23 @@ io.opentracing:opentracing-mock:0.33.0=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.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 @@ -69,8 +65,8 @@ 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 @@ -78,29 +74,26 @@ 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 @@ -109,10 +102,10 @@ 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:1.7.30=testCompileClasspath,testRuntimeClasspath -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 diff --git a/test-gateway-generator/gradle.lockfile b/test-gateway-generator/gradle.lockfile index 1ac17969..2ac752f5 100644 --- a/test-gateway-generator/gradle.lockfile +++ b/test-gateway-generator/gradle.lockfile @@ -28,7 +28,6 @@ com.sun.xml.bind:jaxb-core:4.0.6=compileClasspath,runtimeClasspath,testCompileCl com.sun.xml.bind:jaxb-impl:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath commons-codec:commons-codec:1.11=runtimeClasspath,testRuntimeClasspath commons-io:commons-io:2.20.0=spotbugs -commons-lang:commons-lang:2.6=runtimeClasspath,testRuntimeClasspath commons-logging:commons-logging:1.2=runtimeClasspath,testRuntimeClasspath io.github.cdimascio:dotenv-java:2.3.2=runtimeClasspath,testRuntimeClasspath io.leangen.geantyref:geantyref:1.3.16=testRuntimeClasspath @@ -39,12 +38,11 @@ jakarta.activation:jakarta.activation-api:2.1.4=compileClasspath,runtimeClasspat jakarta.xml.bind:jakarta.xml.bind-api:4.0.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath jakarta.xml.soap:jakarta.xml.soap-api:3.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,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.bytebuddy:byte-buddy-agent:1.17.7=testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy:1.17.7=testCompileClasspath,testRuntimeClasspath net.sf.saxon:Saxon-HE:12.9=spotbugs org.apache.bcel:bcel:6.11.0=spotbugs -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.18.0=compileClasspath,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.httpcomponents:httpclient:4.5.13=runtimeClasspath,testRuntimeClasspath @@ -61,27 +59,25 @@ org.glassfish.jaxb:jaxb-core:4.0.6=compileClasspath,runtimeClasspath,testCompile org.glassfish.jaxb:jaxb-runtime:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.glassfish.jaxb:txw2:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath 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=runtimeClasspath,testRuntimeClasspath 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=jacocoAnt org.ow2.asm:asm:9.9=spotbugs org.projectlombok:lombok:1.18.24=runtimeClasspath,testRuntimeClasspath org.projectlombok:lombok:1.18.42=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath diff --git a/test-gateways/gradle.lockfile b/test-gateways/gradle.lockfile index cea66d88..7fd155a4 100644 --- a/test-gateways/gradle.lockfile +++ b/test-gateways/gradle.lockfile @@ -18,28 +18,26 @@ com.google.auto:auto-common:1.2.1=annotationProcessor com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath com.google.code.gson:gson:2.13.1=pmd com.google.code.gson:gson:2.13.2=annotationProcessor,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=annotationProcessor,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=annotationProcessor,checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath com.google.guava:failureaccess:1.0.1=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.guava:failureaccess:1.0.3=checkstyle com.google.guava:guava:32.0.1-jre=annotationProcessor 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=annotationProcessor,checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.j2objc:j2objc-annotations:2.8=annotationProcessor,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 com.squareup:javapoet:1.13.0=annotationProcessor com.sun.istack:istack-commons-runtime:4.1.2=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.sun.xml.bind:jaxb-core:4.0.6=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.sun.xml.bind:jaxb-impl:4.0.6=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath commons-beanutils:commons-beanutils:1.11.0=checkstyle -commons-codec:commons-codec:1.11=annotationProcessor,runtimeClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.15=checkstyle,pmd +commons-codec:commons-codec:1.11=annotationProcessor,checkstyle,runtimeClasspath,testRuntimeClasspath +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=annotationProcessor,runtimeClasspath,testRuntimeClasspath commons-logging:commons-logging:1.2=annotationProcessor,runtimeClasspath,testRuntimeClasspath info.picocli:picocli:4.7.7=checkstyle io.github.cdimascio:dotenv-java:2.3.2=annotationProcessor,runtimeClasspath,testRuntimeClasspath @@ -51,26 +49,23 @@ jakarta.activation:jakarta.activation-api:2.1.4=annotationProcessor,compileClass jakarta.xml.bind:jakarta.xml.bind-api:4.0.4=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath jakarta.xml.soap:jakarta.xml.soap-api:3.0.2=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,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=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-lang3:3.8.1=checkstyle +org.apache.commons:commons-lang3:3.18.0=annotationProcessor,checkstyle,compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath org.apache.commons:commons-text:1.14.0=spotbugs org.apache.commons:commons-text:1.15.0=annotationProcessor,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=annotationProcessor,checkstyle,runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.13=annotationProcessor,runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.14=checkstyle @@ -84,8 +79,8 @@ org.apache.xbean:xbean-reflect:3.7=checkstyle org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath org.checkerframework:checker-qual:3.33.0=annotationProcessor 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 @@ -97,29 +92,26 @@ org.glassfish.jaxb:jaxb-core:4.0.6=annotationProcessor,compileClasspath,runtimeC org.glassfish.jaxb:jaxb-runtime:4.0.6=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.glassfish.jaxb:txw2:4.0.6=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath 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=annotationProcessor,checkstyle,runtimeClasspath,testRuntimeClasspath 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=annotationProcessor,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=annotationProcessor,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 @@ -127,10 +119,10 @@ org.reflections:reflections:0.10.2=annotationProcessor,checkstyle,runtimeClasspa org.slf4j:jul-to-slf4j:1.7.36=pmd org.slf4j:slf4j-api:1.7.32=annotationProcessor,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=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath empty=spotbugsPlugins diff --git a/test-models/gradle.lockfile b/test-models/gradle.lockfile index bb7749ce..dafce59a 100644 --- a/test-models/gradle.lockfile +++ b/test-models/gradle.lockfile @@ -15,26 +15,24 @@ 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 com.sun.istack:istack-commons-runtime:4.1.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.sun.xml.bind:jaxb-core:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.sun.xml.bind:jaxb-impl:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath commons-beanutils:commons-beanutils:1.11.0=checkstyle -commons-codec:commons-codec:1.11=runtimeClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.15=checkstyle,pmd +commons-codec:commons-codec:1.11=checkstyle,runtimeClasspath,testRuntimeClasspath +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=runtimeClasspath,testRuntimeClasspath commons-logging:commons-logging:1.2=runtimeClasspath,testRuntimeClasspath info.picocli:picocli:4.7.7=checkstyle io.github.cdimascio:dotenv-java:2.3.2=runtimeClasspath,testRuntimeClasspath @@ -46,26 +44,23 @@ jakarta.activation:jakarta.activation-api:2.1.4=compileClasspath,runtimeClasspat jakarta.xml.bind:jakarta.xml.bind-api:4.0.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath jakarta.xml.soap:jakarta.xml.soap-api:3.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,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,runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.13=runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.14=checkstyle @@ -78,8 +73,8 @@ 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 @@ -91,29 +86,26 @@ org.glassfish.jaxb:jaxb-core:4.0.6=compileClasspath,runtimeClasspath,testCompile org.glassfish.jaxb:jaxb-runtime:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.glassfish.jaxb:txw2:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath 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,runtimeClasspath,testRuntimeClasspath 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 @@ -121,10 +113,10 @@ org.reflections:reflections:0.10.2=checkstyle,runtimeClasspath,testRuntimeClassp org.slf4j:jul-to-slf4j:1.7.36=pmd org.slf4j:slf4j-api:1.7.32=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 empty=spotbugsPlugins diff --git a/testing/build.gradle b/testing/build.gradle index 76cbead1..bb36815e 100644 --- a/testing/build.gradle +++ b/testing/build.gradle @@ -1,7 +1,7 @@ dependencies { implementation project(":gateway") implementation "org.assertj:assertj-core:[3.0,4.0)" - implementation "org.mockito:mockito-inline:${project.ext.mockitoVersion}" + implementation "org.mockito:mockito-core:${project.ext.mockitoVersion}" implementation "org.spockframework:spock-core:${project.ext.spockVersion}" implementation "org.junit.jupiter:junit-jupiter-api:${project.ext.junitVersion}" } diff --git a/testing/gradle.lockfile b/testing/gradle.lockfile index 64fe271f..8ff2f745 100644 --- a/testing/gradle.lockfile +++ b/testing/gradle.lockfile @@ -15,26 +15,24 @@ 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 com.sun.istack:istack-commons-runtime:4.1.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.sun.xml.bind:jaxb-core:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.sun.xml.bind:jaxb-impl:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath commons-beanutils:commons-beanutils:1.11.0=checkstyle -commons-codec:commons-codec:1.11=runtimeClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.15=checkstyle,pmd +commons-codec:commons-codec:1.11=checkstyle,runtimeClasspath,testRuntimeClasspath +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=runtimeClasspath,testRuntimeClasspath commons-logging:commons-logging:1.2=runtimeClasspath,testRuntimeClasspath info.picocli:picocli:4.7.7=checkstyle io.github.cdimascio:dotenv-java:2.3.2=runtimeClasspath,testRuntimeClasspath @@ -46,26 +44,23 @@ jakarta.activation:jakarta.activation-api:2.1.4=compileClasspath,runtimeClasspat jakarta.xml.bind:jakarta.xml.bind-api:4.0.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath jakarta.xml.soap:jakarta.xml.soap-api:3.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath jaxen:jaxen:2.0.0=spotbugs -net.bytebuddy:byte-buddy-agent:1.14.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -net.bytebuddy:byte-buddy:1.17.7=compileClasspath,runtimeClasspath,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=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy:1.18.3=compileClasspath,runtimeClasspath,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,runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.13=runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.14=checkstyle @@ -77,10 +72,10 @@ org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle 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=compileClasspath,testCompileClasspath -org.assertj:assertj-core:3.27.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.assertj:assertj-core:3.27.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath 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=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.codehaus.plexus:plexus-classworlds:2.6.0=checkstyle org.codehaus.plexus:plexus-component-annotations:2.1.0=checkstyle @@ -92,29 +87,26 @@ org.glassfish.jaxb:jaxb-core:4.0.6=compileClasspath,runtimeClasspath,testCompile org.glassfish.jaxb:jaxb-runtime:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.glassfish.jaxb:txw2:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.hamcrest:hamcrest:3.0=compileClasspath,runtimeClasspath,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,runtimeClasspath,testRuntimeClasspath org.jspecify:jspecify:1.0.0=checkstyle org.junit.jupiter:junit-jupiter-api:5.14.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.junit.platform:junit-platform-commons:1.14.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.junit.platform:junit-platform-engine:1.14.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.junit:junit-bom:5.14.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath -org.mockito:mockito-core:5.2.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.mockito:mockito-inline:5.2.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-core:5.21.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.objenesis:objenesis:3.3=runtimeClasspath,testRuntimeClasspath org.opentest4j:opentest4j:1.3.0=compileClasspath,runtimeClasspath,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 @@ -122,10 +114,10 @@ org.reflections:reflections:0.10.2=checkstyle,runtimeClasspath,testRuntimeClassp org.slf4j:jul-to-slf4j:1.7.36=pmd org.slf4j:slf4j-api:1.7.32=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=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.spockframework:spock-core:2.4-M6-groovy-3.0=compileClasspath,runtimeClasspath,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 diff --git a/utilities/gradle.lockfile b/utilities/gradle.lockfile index 34cac162..717be1cc 100644 --- a/utilities/gradle.lockfile +++ b/utilities/gradle.lockfile @@ -13,39 +13,37 @@ com.github.stephenc.jcip:jcip-annotations:1.0-1=spotbugs com.google.code.findbugs:jsr305:3.0.2=checkstyle,compileClasspath,spotbugs,testCompileClasspath com.google.code.gson:gson:2.13.1=pmd com.google.code.gson:gson:2.13.2=spotbugs -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=spotbugs +com.google.errorprone:error_prone_annotations:2.41.0=checkstyle,spotbugs com.google.guava:failureaccess:1.0.3=checkstyle -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 -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.8.1=checkstyle +org.apache.commons:commons-lang3:3.18.0=checkstyle,pmd,spotbugs org.apache.commons:commons-text:1.14.0=spotbugs 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 @@ -56,8 +54,8 @@ org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle 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.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 @@ -65,38 +63,35 @@ 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=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=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: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 -empty=signatures,spotbugsPlugins +org.xmlresolver:xmlresolver:5.2.2=pmd +org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs +empty=spotbugsPlugins