From d3c989624ce58257ee5c51e4b4fce744a8d6c720 Mon Sep 17 00:00:00 2001 From: Mitch Williams Date: Thu, 5 Feb 2026 10:41:46 -0700 Subject: [PATCH] revert: "feat!: bump checkstyle, gradle, java, mockito, spotless" This reverts commit fb973c7f89dfe6a1a7c8a19379c2b47777bbeddd. vogueSuppress coppuccino and vogue upgrades resolve CVE blocking pipeline --- .github/workflows/ci.yml | 1 - .vogue.yml | 9 ++++ build.gradle | 51 +++++++++----------- common/gradle.lockfile | 59 ++++++++++++----------- context/gradle.lockfile | 59 ++++++++++++----------- gateway-generator/gradle.lockfile | 60 +++++++++++++----------- gateway/gradle.lockfile | 60 +++++++++++++----------- gradle/wrapper/gradle-wrapper.properties | 2 +- http/gradle.lockfile | 60 +++++++++++++----------- jitpack.yml | 2 +- messaging/gradle.lockfile | 59 ++++++++++++----------- test-gateway-generator/gradle.lockfile | 26 +++++----- test-gateways/gradle.lockfile | 58 ++++++++++++----------- test-models/gradle.lockfile | 58 ++++++++++++----------- testing/build.gradle | 2 +- testing/gradle.lockfile | 58 ++++++++++++----------- utilities/gradle.lockfile | 59 ++++++++++++----------- 17 files changed, 361 insertions(+), 322 deletions(-) create mode 100644 .vogue.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ed70245..2f12772d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,4 +16,3 @@ 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/.vogue.yml b/.vogue.yml new file mode 100644 index 00000000..9a382d76 --- /dev/null +++ b/.vogue.yml @@ -0,0 +1,9 @@ +--- +defaultRules: {} +packageRules: +- package: "com.github.mxenabled.coppuccino:com.github.mxenabled.coppuccino.gradle.plugin" + rules: {} + suppressUntil: "2026-02-10" +- package: "com.github.mxenabled.vogue:com.github.mxenabled.vogue.gradle.plugin" + rules: {} + suppressUntil: "2026-02-10" diff --git a/build.gradle b/build.gradle index 23f672b6..6d07fe2c 100644 --- a/build.gradle +++ b/build.gradle @@ -1,8 +1,8 @@ plugins { id "idea" - 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 "com.github.mxenabled.coppuccino" version "5.+" apply false + id "com.github.mxenabled.vogue" version "2.+" + id "io.freefair.lombok" version "8.+" apply false id "io.github.gradle-nexus.publish-plugin" version "1.1.+" } @@ -29,26 +29,30 @@ allprojects { group "com.mx.path-core" description "MX Path Core" version rootProject.version - - java { - toolchain { - languageVersion = JavaLanguageVersion.of(21) - } - } + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 repositories { mavenCentral() mavenLocal() } - configurations.all { - //remove after upgrading checkstyle 13.0.0 + configurations.configureEach { resolutionStrategy.eachDependency { details -> + //Uncontrolled Recursion [High Severity][https://security.snyk.io/vuln/SNYK-JAVA-ORGAPACHECOMMONS-10734078] in org.apache.commons:commons-lang3@3.17.0 + // introduced by net.sourceforge.pmd:pmd-java@7.16.0 > org.apache.commons:commons-lang3@3.17.0 and 7 other path(s) + // This issue was fixed in versions: 3.18.0 if (details.requested.group == "org.apache.commons" && details.requested.name == "commons-lang3") { details.useVersion "3.18.0" } + //Improper Validation of Certificate with Host Mismatch [Medium Severity][https://security.snyk.io/vuln/SNYK-JAVA-ORGAPACHELOGGINGLOG4J-14532782] in org.apache.logging.log4j:log4j-core@2.25.2 + // introduced by com.github.spotbugs:spotbugs@4.9.8 > org.apache.logging.log4j:log4j-core@2.25.2 + // This issue was fixed in versions: 2.25.3 + else if (details.requested.group == "org.apache.logging.log4j" && details.requested.name == "log4j-core") { + details.useVersion "2.25.3" + } } - resolutionStrategy.cacheChangingModulesFor 0, 'seconds' + resolutionStrategy.cacheChangingModulesFor 0, "seconds" } } @@ -61,7 +65,7 @@ subprojects { apply plugin: "io.freefair.lombok" ext { - mockitoVersion = "5.21.0" + mockitoVersion = "[5.0,6.0)" spockVersion = "2.4-M6-groovy-3.0" junitVersion = "5.14.0" } @@ -112,19 +116,14 @@ subprojects { api "com.sun.xml.bind:jaxb-impl:4.0.6!!" api "org.glassfish.jaxb:jaxb-runtime:4.0.6!!" // ----------------------------------------------------------------- - } - testImplementation "org.mockito:mockito-core:${project.ext.mockitoVersion}" + testImplementation "org.mockito:mockito-inline:${project.ext.mockitoVersion}" testImplementation "org.spockframework:spock-core:${project.ext.spockVersion}" testImplementation "org.junit.jupiter:junit-jupiter-api:${project.ext.junitVersion}" } - test { - useJUnitPlatform() - // restore reflection on base java classes to fix issue w/ tests - jvmArgs "--add-opens", "java.base/java.lang=ALL-UNNAMED" - } + test { useJUnitPlatform() } compileJava { options.compilerArgs << "-parameters" } @@ -145,12 +144,12 @@ subprojects { } task sourcesJar(type: Jar, dependsOn: classes) { - archiveClassifier = "sources" + classifier = "sources" from sourceSets.main.allSource } task packageJavadoc(type: Jar) { - archiveClassifier = "javadoc" + classifier = "javadoc" from javadoc } @@ -244,12 +243,6 @@ task spotlessApply { } } -sourceSets { - main { - java { srcDir "build/generated/sources/annotationProcessor" } - } -} - task subdependencies { subprojects.each { if (it.name != platformProject) { @@ -264,6 +257,6 @@ task subdependencies { project.tasks.getByPath("dependencies").finalizedBy("subdependencies") wrapper { - gradleVersion = "8.14.3" + gradleVersion = "7.6.4" distributionType = Wrapper.DistributionType.ALL } diff --git a/common/gradle.lockfile b/common/gradle.lockfile index 56c9ca0b..19231c7e 100644 --- a/common/gradle.lockfile +++ b/common/gradle.lockfile @@ -9,28 +9,28 @@ 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=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=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.5.0-jre=checkstyle +com.google.guava:guava:33.4.8-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.1=checkstyle -com.puppycrawl.tools:checkstyle:13.0.0=checkstyle +com.google.j2objc:j2objc-annotations:3.0.0=checkstyle +com.puppycrawl.tools:checkstyle:10.25.0=checkstyle commons-beanutils:commons-beanutils:1.11.0=checkstyle -commons-codec:commons-codec:1.11=checkstyle -commons-codec:commons-codec:1.15=pmd +commons-codec:commons-codec:1.15=checkstyle,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.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.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.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 @@ -41,13 +41,13 @@ org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeC 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=pmd -org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=pmd -org.apache.httpcomponents.core5:httpcore5:5.1.3=pmd +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:httpclient:4.5.13=checkstyle org.apache.httpcomponents:httpcore:4.4.14=checkstyle -org.apache.logging.log4j:log4j-api:2.25.2=spotbugs -org.apache.logging.log4j:log4j-core:2.25.2=spotbugs +org.apache.logging.log4j:log4j-api:2.25.3=spotbugs +org.apache.logging.log4j:log4j-core:2.25.3=spotbugs org.apache.maven.doxia:doxia-core:1.12.0=checkstyle org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle @@ -55,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 @@ -64,26 +64,29 @@ 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.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.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.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.21.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-inline:5.2.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.8=jacocoAnt +org.ow2.asm:asm-commons:9.2=jacocoAnt org.ow2.asm:asm-commons:9.9=spotbugs -org.ow2.asm:asm-tree:9.8=jacocoAnt +org.ow2.asm:asm-tree:9.2=jacocoAnt org.ow2.asm:asm-tree:9.9=spotbugs org.ow2.asm:asm-util:9.9=spotbugs -org.ow2.asm:asm:9.8=jacocoAnt,pmd +org.ow2.asm:asm:9.2=jacocoAnt +org.ow2.asm:asm:9.8=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 @@ -91,10 +94,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=checkstyle,spotbugsSlf4j +org.slf4j:slf4j-simple:2.0.17=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=pmd -org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs +org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd +org.xmlresolver:xmlresolver:5.3.3=spotbugs org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -empty=spotbugsPlugins +empty=signatures,spotbugsPlugins diff --git a/context/gradle.lockfile b/context/gradle.lockfile index 6668ce1c..120f2e6f 100644 --- a/context/gradle.lockfile +++ b/context/gradle.lockfile @@ -14,19 +14,19 @@ 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=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=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.5.0-jre=checkstyle +com.google.guava:guava:33.4.8-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.1=checkstyle -com.puppycrawl.tools:checkstyle:13.0.0=checkstyle +com.google.j2objc:j2objc-annotations:3.0.0=checkstyle +com.puppycrawl.tools:checkstyle:10.25.0=checkstyle commons-beanutils:commons-beanutils:1.11.0=checkstyle -commons-codec:commons-codec:1.11=checkstyle -commons-codec:commons-codec:1.15=pmd +commons-codec:commons-codec:1.15=checkstyle,pmd commons-collections:commons-collections:3.2.2=checkstyle commons-io:commons-io:2.20.0=spotbugs info.picocli:picocli:4.7.7=checkstyle @@ -36,10 +36,10 @@ 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.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.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.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 @@ -50,13 +50,13 @@ org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeC 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=pmd -org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=pmd -org.apache.httpcomponents.core5:httpcore5:5.1.3=pmd +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:httpclient:4.5.13=checkstyle org.apache.httpcomponents:httpcore:4.4.14=checkstyle -org.apache.logging.log4j:log4j-api:2.25.2=spotbugs -org.apache.logging.log4j:log4j-core:2.25.2=spotbugs +org.apache.logging.log4j:log4j-api:2.25.3=spotbugs +org.apache.logging.log4j:log4j-core:2.25.3=spotbugs org.apache.maven.doxia:doxia-core:1.12.0=checkstyle org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle @@ -64,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 @@ -73,26 +73,29 @@ 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.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.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.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.21.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-inline:5.2.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.8=jacocoAnt +org.ow2.asm:asm-commons:9.2=jacocoAnt org.ow2.asm:asm-commons:9.9=spotbugs -org.ow2.asm:asm-tree:9.8=jacocoAnt +org.ow2.asm:asm-tree:9.2=jacocoAnt org.ow2.asm:asm-tree:9.9=spotbugs org.ow2.asm:asm-util:9.9=spotbugs -org.ow2.asm:asm:9.8=jacocoAnt,pmd +org.ow2.asm:asm:9.2=jacocoAnt +org.ow2.asm:asm:9.8=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 @@ -100,12 +103,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=checkstyle,spotbugsSlf4j +org.slf4j:slf4j-simple:2.0.17=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=pmd -org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs +org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd +org.xmlresolver:xmlresolver:5.3.3=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=spotbugsPlugins +empty=signatures,spotbugsPlugins diff --git a/gateway-generator/gradle.lockfile b/gateway-generator/gradle.lockfile index 2de93dcc..a5c1d797 100644 --- a/gateway-generator/gradle.lockfile +++ b/gateway-generator/gradle.lockfile @@ -19,23 +19,24 @@ 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=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=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.5.0-jre=checkstyle +com.google.guava:guava:33.4.8-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.1=checkstyle -com.puppycrawl.tools:checkstyle:13.0.0=checkstyle +com.google.j2objc:j2objc-annotations:3.0.0=checkstyle +com.puppycrawl.tools:checkstyle:10.25.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=checkstyle,runtimeClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.15=pmd +commons-codec:commons-codec:1.11=runtimeClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.15=checkstyle,pmd commons-collections:commons-collections:3.2.2=checkstyle commons-io:commons-io:2.20.0=spotbugs commons-logging:commons-logging:1.2=runtimeClasspath,testRuntimeClasspath @@ -49,10 +50,10 @@ 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.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.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.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 @@ -63,14 +64,14 @@ org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeC 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=pmd -org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=pmd -org.apache.httpcomponents.core5:httpcore5:5.1.3=pmd +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:httpclient:4.5.13=checkstyle,runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.13=runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.14=checkstyle -org.apache.logging.log4j:log4j-api:2.25.2=spotbugs -org.apache.logging.log4j:log4j-core:2.25.2=spotbugs +org.apache.logging.log4j:log4j-api:2.25.3=spotbugs +org.apache.logging.log4j:log4j-core:2.25.3=spotbugs org.apache.maven.doxia:doxia-core:1.12.0=checkstyle org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle @@ -78,8 +79,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 @@ -91,26 +92,29 @@ 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.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.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.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.21.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-inline:5.2.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.8=jacocoAnt +org.ow2.asm:asm-commons:9.2=jacocoAnt org.ow2.asm:asm-commons:9.9=spotbugs -org.ow2.asm:asm-tree:9.8=jacocoAnt +org.ow2.asm:asm-tree:9.2=jacocoAnt org.ow2.asm:asm-tree:9.9=spotbugs org.ow2.asm:asm-util:9.9=spotbugs -org.ow2.asm:asm:9.8=jacocoAnt,pmd +org.ow2.asm:asm:9.2=jacocoAnt +org.ow2.asm:asm:9.8=pmd org.ow2.asm:asm:9.9=spotbugs org.pcollections:pcollections:4.0.2=pmd org.projectlombok:lombok:1.18.24=runtimeClasspath,testRuntimeClasspath @@ -119,10 +123,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=checkstyle,spotbugsSlf4j +org.slf4j:slf4j-simple:2.0.17=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=pmd -org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs +org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd +org.xmlresolver:xmlresolver:5.3.3=spotbugs org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -empty=spotbugsPlugins +empty=signatures,spotbugsPlugins diff --git a/gateway/gradle.lockfile b/gateway/gradle.lockfile index 298e93dd..5fcaf9ed 100644 --- a/gateway/gradle.lockfile +++ b/gateway/gradle.lockfile @@ -15,22 +15,23 @@ 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=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=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.5.0-jre=checkstyle +com.google.guava:guava:33.4.8-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.1=checkstyle -com.puppycrawl.tools:checkstyle:13.0.0=checkstyle +com.google.j2objc:j2objc-annotations:3.0.0=checkstyle +com.puppycrawl.tools:checkstyle:10.25.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=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.15=pmd +commons-codec:commons-codec:1.11=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.15=checkstyle,pmd commons-collections:commons-collections:3.2.2=checkstyle commons-io:commons-io:2.20.0=spotbugs commons-logging:commons-logging:1.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath @@ -45,10 +46,10 @@ 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.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.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.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 @@ -59,14 +60,14 @@ org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeC 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=pmd -org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=pmd -org.apache.httpcomponents.core5:httpcore5:5.1.3=pmd +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: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 -org.apache.logging.log4j:log4j-api:2.25.2=spotbugs -org.apache.logging.log4j:log4j-core:2.25.2=spotbugs +org.apache.logging.log4j:log4j-api:2.25.3=spotbugs +org.apache.logging.log4j:log4j-core:2.25.3=spotbugs org.apache.maven.doxia:doxia-core:1.12.0=checkstyle org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle @@ -74,8 +75,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 @@ -87,26 +88,29 @@ 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.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.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.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.21.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-inline:5.2.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.8=jacocoAnt +org.ow2.asm:asm-commons:9.2=jacocoAnt org.ow2.asm:asm-commons:9.9=spotbugs -org.ow2.asm:asm-tree:9.8=jacocoAnt +org.ow2.asm:asm-tree:9.2=jacocoAnt org.ow2.asm:asm-tree:9.9=spotbugs org.ow2.asm:asm-util:9.9=spotbugs -org.ow2.asm:asm:9.8=jacocoAnt,pmd +org.ow2.asm:asm:9.2=jacocoAnt +org.ow2.asm:asm:9.8=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 @@ -115,10 +119,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=checkstyle,spotbugsSlf4j +org.slf4j:slf4j-simple:2.0.17=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=pmd -org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs +org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd +org.xmlresolver:xmlresolver:5.3.3=spotbugs org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -empty=spotbugsPlugins +empty=signatures,spotbugsPlugins diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 37a6725d..5c00f617 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-8.14.3-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.4-all.zip networkTimeout=10000 zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/http/gradle.lockfile b/http/gradle.lockfile index 860a1fac..a1f36098 100644 --- a/http/gradle.lockfile +++ b/http/gradle.lockfile @@ -15,22 +15,23 @@ 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=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=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.5.0-jre=checkstyle +com.google.guava:guava:33.4.8-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.1=checkstyle -com.puppycrawl.tools:checkstyle:13.0.0=checkstyle +com.google.j2objc:j2objc-annotations:3.0.0=checkstyle +com.puppycrawl.tools:checkstyle:10.25.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=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.15=pmd +commons-codec:commons-codec:1.11=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.15=checkstyle,pmd commons-collections:commons-collections:3.2.2=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath commons-io:commons-io:2.20.0=spotbugs commons-logging:commons-logging:1.3.5=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath @@ -45,10 +46,10 @@ 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.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.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.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 @@ -59,14 +60,14 @@ org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeC 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=pmd -org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=pmd -org.apache.httpcomponents.core5:httpcore5:5.1.3=pmd +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: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 -org.apache.logging.log4j:log4j-api:2.25.2=spotbugs -org.apache.logging.log4j:log4j-core:2.25.2=spotbugs +org.apache.logging.log4j:log4j-api:2.25.3=spotbugs +org.apache.logging.log4j:log4j-core:2.25.3=spotbugs org.apache.maven.doxia:doxia-core:1.12.0=checkstyle org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle @@ -74,8 +75,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 @@ -87,26 +88,29 @@ 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.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.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.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.21.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-inline:5.2.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.8=jacocoAnt +org.ow2.asm:asm-commons:9.2=jacocoAnt org.ow2.asm:asm-commons:9.9=spotbugs -org.ow2.asm:asm-tree:9.8=jacocoAnt +org.ow2.asm:asm-tree:9.2=jacocoAnt org.ow2.asm:asm-tree:9.9=spotbugs org.ow2.asm:asm-util:9.9=spotbugs -org.ow2.asm:asm:9.8=jacocoAnt,pmd +org.ow2.asm:asm:9.2=jacocoAnt +org.ow2.asm:asm:9.8=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 @@ -116,10 +120,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=checkstyle,spotbugsSlf4j +org.slf4j:slf4j-simple:2.0.17=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=pmd -org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs +org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd +org.xmlresolver:xmlresolver:5.3.3=spotbugs org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -empty=spotbugsPlugins +empty=signatures,spotbugsPlugins diff --git a/jitpack.yml b/jitpack.yml index 727c9abd..efde7bf2 100644 --- a/jitpack.yml +++ b/jitpack.yml @@ -1,2 +1,2 @@ jdk: - - openjdk21 + - openjdk17 diff --git a/messaging/gradle.lockfile b/messaging/gradle.lockfile index 109b406f..7a9b2630 100644 --- a/messaging/gradle.lockfile +++ b/messaging/gradle.lockfile @@ -14,19 +14,19 @@ 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=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=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.5.0-jre=checkstyle +com.google.guava:guava:33.4.8-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.1=checkstyle -com.puppycrawl.tools:checkstyle:13.0.0=checkstyle +com.google.j2objc:j2objc-annotations:3.0.0=checkstyle +com.puppycrawl.tools:checkstyle:10.25.0=checkstyle commons-beanutils:commons-beanutils:1.11.0=checkstyle -commons-codec:commons-codec:1.11=checkstyle -commons-codec:commons-codec:1.15=pmd +commons-codec:commons-codec:1.15=checkstyle,pmd commons-collections:commons-collections:3.2.2=checkstyle commons-io:commons-io:2.20.0=spotbugs info.picocli:picocli:4.7.7=checkstyle @@ -37,10 +37,10 @@ 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.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.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.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 @@ -51,13 +51,13 @@ org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeC 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=pmd -org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=pmd -org.apache.httpcomponents.core5:httpcore5:5.1.3=pmd +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:httpclient:4.5.13=checkstyle org.apache.httpcomponents:httpcore:4.4.14=checkstyle -org.apache.logging.log4j:log4j-api:2.25.2=spotbugs -org.apache.logging.log4j:log4j-core:2.25.2=spotbugs +org.apache.logging.log4j:log4j-api:2.25.3=spotbugs +org.apache.logging.log4j:log4j-core:2.25.3=spotbugs org.apache.maven.doxia:doxia-core:1.12.0=checkstyle org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle @@ -65,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 @@ -74,26 +74,29 @@ 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.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.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.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.21.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-inline:5.2.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.8=jacocoAnt +org.ow2.asm:asm-commons:9.2=jacocoAnt org.ow2.asm:asm-commons:9.9=spotbugs -org.ow2.asm:asm-tree:9.8=jacocoAnt +org.ow2.asm:asm-tree:9.2=jacocoAnt org.ow2.asm:asm-tree:9.9=spotbugs org.ow2.asm:asm-util:9.9=spotbugs -org.ow2.asm:asm:9.8=jacocoAnt,pmd +org.ow2.asm:asm:9.2=jacocoAnt +org.ow2.asm:asm:9.8=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 @@ -102,10 +105,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=checkstyle,spotbugsSlf4j +org.slf4j:slf4j-simple:2.0.17=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=pmd -org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs +org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd +org.xmlresolver:xmlresolver:5.3.3=spotbugs org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -empty=spotbugsPlugins +empty=signatures,spotbugsPlugins diff --git a/test-gateway-generator/gradle.lockfile b/test-gateway-generator/gradle.lockfile index 2ac752f5..84fda013 100644 --- a/test-gateway-generator/gradle.lockfile +++ b/test-gateway-generator/gradle.lockfile @@ -38,8 +38,8 @@ 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.17.7=testCompileClasspath,testRuntimeClasspath -net.bytebuddy:byte-buddy:1.17.7=testCompileClasspath,testRuntimeClasspath +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.9=spotbugs org.apache.bcel:bcel:6.11.0=spotbugs org.apache.commons:commons-lang3:3.18.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath @@ -47,8 +47,8 @@ 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 org.apache.httpcomponents:httpcore:4.4.13=runtimeClasspath,testRuntimeClasspath -org.apache.logging.log4j:log4j-api:2.25.2=spotbugs -org.apache.logging.log4j:log4j-core:2.25.2=spotbugs +org.apache.logging.log4j:log4j-api:2.25.3=spotbugs +org.apache.logging.log4j:log4j-core:2.25.3=spotbugs org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath org.checkerframework:checker-qual:3.33.0=runtimeClasspath,testRuntimeClasspath org.checkerframework:checker-qual:3.37.0=compileClasspath,testCompileClasspath @@ -59,25 +59,27 @@ 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.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.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.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.21.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-inline:5.2.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.8=jacocoAnt +org.ow2.asm:asm-commons:9.2=jacocoAnt org.ow2.asm:asm-commons:9.9=spotbugs -org.ow2.asm:asm-tree:9.8=jacocoAnt +org.ow2.asm:asm-tree:9.2=jacocoAnt org.ow2.asm:asm-tree:9.9=spotbugs org.ow2.asm:asm-util:9.9=spotbugs -org.ow2.asm:asm:9.8=jacocoAnt +org.ow2.asm:asm:9.2=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 7fd155a4..bb7ffc80 100644 --- a/test-gateways/gradle.lockfile +++ b/test-gateways/gradle.lockfile @@ -18,24 +18,25 @@ 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,checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=annotationProcessor,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.5.0-jre=checkstyle +com.google.guava:guava:33.4.8-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.1=checkstyle -com.puppycrawl.tools:checkstyle:13.0.0=checkstyle +com.google.j2objc:j2objc-annotations:3.0.0=checkstyle +com.puppycrawl.tools:checkstyle:10.25.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,checkstyle,runtimeClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.15=pmd +commons-codec:commons-codec:1.11=annotationProcessor,runtimeClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.15=checkstyle,pmd commons-collections:commons-collections:3.2.2=checkstyle commons-io:commons-io:2.20.0=spotbugs commons-logging:commons-logging:1.2=annotationProcessor,runtimeClasspath,testRuntimeClasspath @@ -49,10 +50,10 @@ 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.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.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.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 @@ -63,14 +64,14 @@ org.apache.commons:commons-lang3:3.18.0=annotationProcessor,checkstyle,compileCl 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=pmd -org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=pmd -org.apache.httpcomponents.core5:httpcore5:5.1.3=pmd +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: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 -org.apache.logging.log4j:log4j-api:2.25.2=spotbugs -org.apache.logging.log4j:log4j-core:2.25.2=spotbugs +org.apache.logging.log4j:log4j-api:2.25.3=spotbugs +org.apache.logging.log4j:log4j-core:2.25.3=spotbugs org.apache.maven.doxia:doxia-core:1.12.0=checkstyle org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle @@ -79,8 +80,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 @@ -92,26 +93,29 @@ 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.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.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.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.21.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-inline:5.2.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.8=jacocoAnt +org.ow2.asm:asm-commons:9.2=jacocoAnt org.ow2.asm:asm-commons:9.9=spotbugs -org.ow2.asm:asm-tree:9.8=jacocoAnt +org.ow2.asm:asm-tree:9.2=jacocoAnt org.ow2.asm:asm-tree:9.9=spotbugs org.ow2.asm:asm-util:9.9=spotbugs -org.ow2.asm:asm:9.8=jacocoAnt,pmd +org.ow2.asm:asm:9.2=jacocoAnt +org.ow2.asm:asm:9.8=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 @@ -119,10 +123,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=checkstyle,spotbugsSlf4j +org.slf4j:slf4j-simple:2.0.17=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=pmd -org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs +org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd +org.xmlresolver:xmlresolver:5.3.3=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 dafce59a..32ea9554 100644 --- a/test-models/gradle.lockfile +++ b/test-models/gradle.lockfile @@ -15,22 +15,23 @@ 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=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=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.5.0-jre=checkstyle +com.google.guava:guava:33.4.8-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.1=checkstyle -com.puppycrawl.tools:checkstyle:13.0.0=checkstyle +com.google.j2objc:j2objc-annotations:3.0.0=checkstyle +com.puppycrawl.tools:checkstyle:10.25.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=checkstyle,runtimeClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.15=pmd +commons-codec:commons-codec:1.11=runtimeClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.15=checkstyle,pmd commons-collections:commons-collections:3.2.2=checkstyle commons-io:commons-io:2.20.0=spotbugs commons-logging:commons-logging:1.2=runtimeClasspath,testRuntimeClasspath @@ -44,10 +45,10 @@ 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.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.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.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 @@ -58,14 +59,14 @@ org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeC 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=pmd -org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=pmd -org.apache.httpcomponents.core5:httpcore5:5.1.3=pmd +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:httpclient:4.5.13=checkstyle,runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.13=runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.14=checkstyle -org.apache.logging.log4j:log4j-api:2.25.2=spotbugs -org.apache.logging.log4j:log4j-core:2.25.2=spotbugs +org.apache.logging.log4j:log4j-api:2.25.3=spotbugs +org.apache.logging.log4j:log4j-core:2.25.3=spotbugs org.apache.maven.doxia:doxia-core:1.12.0=checkstyle org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle @@ -73,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 @@ -86,26 +87,29 @@ 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.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.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.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.21.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-inline:5.2.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.8=jacocoAnt +org.ow2.asm:asm-commons:9.2=jacocoAnt org.ow2.asm:asm-commons:9.9=spotbugs -org.ow2.asm:asm-tree:9.8=jacocoAnt +org.ow2.asm:asm-tree:9.2=jacocoAnt org.ow2.asm:asm-tree:9.9=spotbugs org.ow2.asm:asm-util:9.9=spotbugs -org.ow2.asm:asm:9.8=jacocoAnt,pmd +org.ow2.asm:asm:9.2=jacocoAnt +org.ow2.asm:asm:9.8=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 @@ -113,10 +117,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=checkstyle,spotbugsSlf4j +org.slf4j:slf4j-simple:2.0.17=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=pmd -org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs +org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd +org.xmlresolver:xmlresolver:5.3.3=spotbugs org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath empty=spotbugsPlugins diff --git a/testing/build.gradle b/testing/build.gradle index bb36815e..76cbead1 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-core:${project.ext.mockitoVersion}" + implementation "org.mockito:mockito-inline:${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 8ff2f745..aa380ba6 100644 --- a/testing/gradle.lockfile +++ b/testing/gradle.lockfile @@ -15,22 +15,23 @@ 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=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=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.5.0-jre=checkstyle +com.google.guava:guava:33.4.8-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.1=checkstyle -com.puppycrawl.tools:checkstyle:13.0.0=checkstyle +com.google.j2objc:j2objc-annotations:3.0.0=checkstyle +com.puppycrawl.tools:checkstyle:10.25.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=checkstyle,runtimeClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.15=pmd +commons-codec:commons-codec:1.11=runtimeClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.15=checkstyle,pmd commons-collections:commons-collections:3.2.2=checkstyle commons-io:commons-io:2.20.0=spotbugs commons-logging:commons-logging:1.2=runtimeClasspath,testRuntimeClasspath @@ -44,10 +45,10 @@ 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.17.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy-agent:1.14.1=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.sf.saxon:Saxon-HE:12.5=checkstyle,pmd +net.sf.saxon:Saxon-HE:12.9=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 @@ -58,14 +59,14 @@ org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeC 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=pmd -org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=pmd -org.apache.httpcomponents.core5:httpcore5:5.1.3=pmd +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:httpclient:4.5.13=checkstyle,runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.13=runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.14=checkstyle -org.apache.logging.log4j:log4j-api:2.25.2=spotbugs -org.apache.logging.log4j:log4j-core:2.25.2=spotbugs +org.apache.logging.log4j:log4j-api:2.25.3=spotbugs +org.apache.logging.log4j:log4j-core:2.25.3=spotbugs org.apache.maven.doxia:doxia-core:1.12.0=checkstyle org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle @@ -74,8 +75,8 @@ org.apache.xbean:xbean-reflect:3.7=checkstyle org.apiguardian:apiguardian-api:1.1.2=compileClasspath,testCompileClasspath 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 @@ -87,26 +88,29 @@ 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.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.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.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.21.0=compileClasspath,runtimeClasspath,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.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.8=jacocoAnt +org.ow2.asm:asm-commons:9.2=jacocoAnt org.ow2.asm:asm-commons:9.9=spotbugs -org.ow2.asm:asm-tree:9.8=jacocoAnt +org.ow2.asm:asm-tree:9.2=jacocoAnt org.ow2.asm:asm-tree:9.9=spotbugs org.ow2.asm:asm-util:9.9=spotbugs -org.ow2.asm:asm:9.8=jacocoAnt,pmd +org.ow2.asm:asm:9.2=jacocoAnt +org.ow2.asm:asm:9.8=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 @@ -114,10 +118,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=checkstyle,spotbugsSlf4j +org.slf4j:slf4j-simple:2.0.17=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=pmd -org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs +org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd +org.xmlresolver:xmlresolver:5.3.3=spotbugs org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -empty=spotbugsPlugins +empty=signatures,spotbugsPlugins diff --git a/utilities/gradle.lockfile b/utilities/gradle.lockfile index 717be1cc..018a1ef7 100644 --- a/utilities/gradle.lockfile +++ b/utilities/gradle.lockfile @@ -13,25 +13,25 @@ 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=checkstyle,spotbugs +com.google.errorprone:error_prone_annotations:2.41.0=spotbugs com.google.guava:failureaccess:1.0.3=checkstyle -com.google.guava:guava:33.5.0-jre=checkstyle +com.google.guava:guava:33.4.8-jre=checkstyle com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle -com.google.j2objc:j2objc-annotations:3.1=checkstyle -com.puppycrawl.tools:checkstyle:13.0.0=checkstyle +com.google.j2objc:j2objc-annotations:3.0.0=checkstyle +com.puppycrawl.tools:checkstyle:10.25.0=checkstyle commons-beanutils:commons-beanutils:1.11.0=checkstyle -commons-codec:commons-codec:1.11=checkstyle -commons-codec:commons-codec:1.15=pmd +commons-codec:commons-codec:1.15=checkstyle,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.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.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.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 @@ -41,21 +41,21 @@ org.apache.bcel:bcel:6.11.0=spotbugs 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=pmd -org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=pmd -org.apache.httpcomponents.core5:httpcore5:5.1.3=pmd +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:httpclient:4.5.13=checkstyle org.apache.httpcomponents:httpcore:4.4.14=checkstyle -org.apache.logging.log4j:log4j-api:2.25.2=spotbugs -org.apache.logging.log4j:log4j-core:2.25.2=spotbugs +org.apache.logging.log4j:log4j-api:2.25.3=spotbugs +org.apache.logging.log4j:log4j-core:2.25.3=spotbugs org.apache.maven.doxia:doxia-core:1.12.0=checkstyle org.apache.maven.doxia:doxia-logging-api:1.12.0=checkstyle 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 @@ -63,35 +63,38 @@ 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.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.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.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.21.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-inline:5.2.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.8=jacocoAnt +org.ow2.asm:asm-commons:9.2=jacocoAnt org.ow2.asm:asm-commons:9.9=spotbugs -org.ow2.asm:asm-tree:9.8=jacocoAnt +org.ow2.asm:asm-tree:9.2=jacocoAnt org.ow2.asm:asm-tree:9.9=spotbugs org.ow2.asm:asm-util:9.9=spotbugs -org.ow2.asm:asm:9.8=jacocoAnt,pmd +org.ow2.asm:asm:9.2=jacocoAnt +org.ow2.asm:asm:9.8=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=checkstyle,spotbugsSlf4j +org.slf4j:slf4j-simple:2.0.17=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=pmd -org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs -empty=spotbugsPlugins +org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd +org.xmlresolver:xmlresolver:5.3.3=spotbugs +empty=signatures,spotbugsPlugins