From 61364a36eead3e09c3bd64d7bc5ee75147a22e5f Mon Sep 17 00:00:00 2001 From: Steven Leighton Date: Sat, 28 Feb 2026 19:29:31 -0700 Subject: [PATCH] fix: resolve snyk vulnerabilities build: update plugins and dependencies build: clean up gradle configuration files --- .clothesline.yaml | 0 .vogue.yml | 9 - build.gradle | 200 ++++++++++------------- gradle.properties | 2 +- gradle/wrapper/gradle-wrapper.properties | 2 +- mdx-gateway-generator/.gitignore | 1 - mdx-gateway-generator/gradle.lockfile | 79 ++++----- mdx-gateways/.gitignore | 1 - mdx-gateways/build.gradle | 5 +- mdx-gateways/gradle.lockfile | 116 ++++++------- mdx-models/build.gradle | 5 +- mdx-models/gradle.lockfile | 101 +++++------- mdx-web/build.gradle | 12 +- mdx-web/gradle.lockfile | 162 +++++++++--------- platform/build.gradle | 45 +---- realtime/build.gradle | 2 - realtime/gradle.lockfile | 103 +++++------- settings.gradle | 2 +- 18 files changed, 347 insertions(+), 500 deletions(-) delete mode 100644 .clothesline.yaml delete mode 100644 .vogue.yml delete mode 100644 mdx-gateway-generator/.gitignore delete mode 100644 mdx-gateways/.gitignore diff --git a/.clothesline.yaml b/.clothesline.yaml deleted file mode 100644 index e69de29b..00000000 diff --git a/.vogue.yml b/.vogue.yml deleted file mode 100644 index 56d189e2..00000000 --- a/.vogue.yml +++ /dev/null @@ -1,9 +0,0 @@ ---- -defaultRules: {} -packageRules: -- package: "com.github.mxenabled.coppuccino:com.github.mxenabled.coppuccino.gradle.plugin" - rules: {} - suppressUntil: "2026-03-01" -- package: "com.github.mxenabled.vogue:com.github.mxenabled.vogue.gradle.plugin" - rules: {} - suppressUntil: "2026-03-01" diff --git a/build.gradle b/build.gradle index 822d14b6..9ac07243 100644 --- a/build.gradle +++ b/build.gradle @@ -1,12 +1,14 @@ plugins { + id "com.github.mxenabled.coppuccino" version "6.+" apply false + id "com.github.mxenabled.vogue" version "3.+" apply false id "idea" - id "com.github.mxenabled.coppuccino" version "5.+" apply false - id "com.github.mxenabled.vogue" version "2.+" id "io.freefair.lombok" version "8.+" apply false id "io.github.gradle-nexus.publish-plugin" version "1.1.+" id "com.netflix.nebula.maven-resolved-dependencies" version "21.2.0" apply false } +group "com.mx.path-mdx-model" +description "Path MDX Model" version "20.2.3" // x-release-please-version def platformProject = "platform" @@ -18,58 +20,30 @@ def publishedProjects = [ "mdx-web" ] -allprojects { - if (it.name != platformProject) { - apply plugin: "java" - } - - group "com.mx.path-mdx-model" - description "Path MDX Model" +subprojects { + group rootProject.group + description rootProject.description version rootProject.version - sourceCompatibility = JavaVersion.VERSION_17 - targetCompatibility = JavaVersion.VERSION_17 - - repositories { - mavenCentral() - mavenLocal() - } - - configurations.all { - resolutionStrategy.cacheChangingModulesFor 0, "seconds" - } ext { - pathSDKVersion = "[6.0,7.0)" - springVersion = "3.5.8" + pathCoreVersion = "[6.0,7.0)" + springVersion = "3.5.11" } -} -subprojects { if (it.name != platformProject) { - apply plugin: "java-library" - apply plugin: "groovy" apply plugin: "com.github.mxenabled.coppuccino" apply plugin: "com.github.mxenabled.vogue" + apply plugin: "groovy" + apply plugin: "java-library" apply plugin: "io.freefair.lombok" apply plugin: "com.netflix.nebula.maven-resolved-dependencies" - dependencies { - api platform("com.mx.path-core:platform:${project.ext.pathSDKVersion}") - - testImplementation "org.mockito:mockito-inline:[5.0,6.0)" - testImplementation "org.spockframework:spock-core:2.4-M6-groovy-3.0" - } - - test { useJUnitPlatform() } - - compileJava { options.compilerArgs << "-parameters" } - - javadoc { - classpath = configurations.compileClasspath - options { - setMemberLevel JavadocMemberLevel.PUBLIC - setAuthor true + java { + toolchain { + languageVersion = JavaLanguageVersion.of(17) } + withSourcesJar() + withJavadocJar() } coppuccino { @@ -83,78 +57,89 @@ subprojects { dependencyUpdatesOutputDir = "${projectDir}/build/dependencyUpdates" } - task sourcesJar(type: Jar, dependsOn: classes) { - classifier = "sources" - from sourceSets.main.allSource + repositories { + mavenCentral() + mavenLocal() } - task packageJavadoc(type: Jar) { - classifier = "javadoc" - from javadoc + dependencies { + api platform("com.mx.path-core:platform:${project.ext.pathCoreVersion}") + + testImplementation "com.mx.path-core:testing" } - artifacts { - archives sourcesJar - archives jar - archives packageJavadoc + test { useJUnitPlatform() } + + compileJava { options.compilerArgs << "-parameters" } + + javadoc { + classpath = configurations.compileClasspath + options { + setMemberLevel JavadocMemberLevel.PUBLIC + setAuthor true + } } + } - if (publishedProjects.contains(it.name)) { - apply plugin: "maven-publish" - apply plugin: "signing" + if (publishedProjects.contains(it.name)) { + apply plugin: "maven-publish" + apply plugin: "signing" + if (it.name != platformProject) { publishing { publications { maven(MavenPublication) { from components.java - artifact sourcesJar - artifact packageJavadoc - - pom { - groupId = project.group - artifactId = project.name - name = project.name - description = project.description - url = "https://github.com/mxenabled/path-mdx-model" - - developers { - developer { - name = "MX" - email = "path@mx.com" - organization = "MX Technologies Inc." - url = "http://www.mx.com" - } - } - - licenses { - license { - name = "Proprietary" - url = "https://github.com/mxenabled/path-mdx-model/blob/master/LICENSE" - distribution = "repo" - } - } - - scm { - connection = "scm:git:git@github.com:mxenabled/path-mdx-model.git" - url = "https://github.com/mxenabled/path-mdx-model/tree/master" - } - } } } } + } + + publishing { + publications.withType(MavenPublication).configureEach { + pom { + groupId = project.group + artifactId = project.name + name = project.name + description = project.description + url = "https://github.com/mxenabled/path-mdx-model" + + developers { + developer { + name = "MX" + email = "path@mx.com" + organization = "MX Technologies Inc." + url = "http://www.mx.com" + } + } + + licenses { + license { + name = "Proprietary" + url = "https://github.com/mxenabled/path-mdx-model/blob/master/LICENSE" + distribution = "repo" + } + } - signing { - def signingKey = findProperty("signingKey") - def signingPassword = findProperty("signingKeyPassword") - if (signingKey != null && signingKey != "") { - useInMemoryPgpKeys(signingKey, signingPassword) - sign publishing.publications.maven - logger.lifecycle("Configuring signing for ${project.name}") - } else { - logger.lifecycle("Skipping artifact signing for ${project.name} - missing signing key") + scm { + connection = "scm:git:git@github.com:mxenabled/path-mdx-model.git" + url = "https://github.com/mxenabled/path-mdx-model/tree/master" + } } } } + + signing { + def signingKey = findProperty("signingKey") + def signingPassword = findProperty("signingKeyPassword") + if (signingKey != null && signingKey != "") { + useInMemoryPgpKeys(signingKey, signingPassword) + sign publishing.publications + logger.lifecycle("Configuring signing for ${project.name}") + } else { + logger.lifecycle("Skipping artifact signing for ${project.name} - missing signing key") + } + } } } @@ -173,25 +158,16 @@ nexusPublishing { } task spotlessApply { - subprojects.each { - if (it.name != platformProject) { - it.afterEvaluate { - def spotlessApplyTask = it.tasks.findByName("spotlessApply") - dependsOn(spotlessApplyTask) - } - } - } + dependsOn subprojects.findAll { it.name != platformProject }.collect { "${it.path}:spotlessApply" } } task subdependencies { - subprojects.each { - if (it.name != platformProject) { - it.afterEvaluate { - def dependenciesTask = it.tasks.findByName("dependencies") - dependsOn(dependenciesTask) - } - } - } + dependsOn subprojects.findAll { it.name != platformProject }.collect { "${it.path}:dependencies" } } project.tasks.getByPath("dependencies").finalizedBy("subdependencies") + +wrapper { + gradleVersion = "7.6.4" + distributionType = Wrapper.DistributionType.ALL +} diff --git a/gradle.properties b/gradle.properties index 14afa28b..8b69c90b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ - +# Maven Central does not support SHA-512 checksums. This disables the publish warning. org.gradle.internal.publish.checksums.insecure=true diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index c7d437bb..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-7.6.4-bin.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/mdx-gateway-generator/.gitignore b/mdx-gateway-generator/.gitignore deleted file mode 100644 index ac44d484..00000000 --- a/mdx-gateway-generator/.gitignore +++ /dev/null @@ -1 +0,0 @@ -../gateway-generator/build \ No newline at end of file diff --git a/mdx-gateway-generator/gradle.lockfile b/mdx-gateway-generator/gradle.lockfile index c7caf99f..fe22f864 100644 --- a/mdx-gateway-generator/gradle.lockfile +++ b/mdx-gateway-generator/gradle.lockfile @@ -3,48 +3,38 @@ # This file is expected to be part of source control. com.auth0:java-jwt:4.5.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.datadoghq:dd-trace-api:1.38.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-annotations:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.core:jackson-annotations:2.21=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-core:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.core:jackson-core:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-databind:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.core:jackson-databind:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson:jackson-bom:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson:jackson-bom:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.woodstox:woodstox-core:6.3.1=compileClasspath,testCompileClasspath -com.fasterxml.woodstox:woodstox-core:7.1.1=runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.21=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-core:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson:jackson-bom:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.woodstox:woodstox-core:7.1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.github.rholder:guava-retrying:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.spotbugs:spotbugs-annotations:4.9.8=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.github.spotbugs:spotbugs-annotations:4.9.8=annotationProcessor,compileClasspath,spotbugs,testAnnotationProcessor,testCompileClasspath com.github.spotbugs:spotbugs:4.9.8=spotbugs com.github.stephenc.jcip:jcip-annotations:1.0-1=spotbugs -com.google.auto.service:auto-service-annotations:1.1.1=runtimeClasspath,testRuntimeClasspath -com.google.auto.service:auto-service:1.1.1=runtimeClasspath,testRuntimeClasspath -com.google.auto:auto-common:1.2.1=runtimeClasspath,testRuntimeClasspath -com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,compileClasspath,runtimeClasspath,spotbugs,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath com.google.code.gson:gson:2.13.2=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:guava:32.0.1-jre=runtimeClasspath,testRuntimeClasspath -com.google.guava:guava:32.1.3-jre=compileClasspath,testCompileClasspath +com.google.guava:guava:32.1.3-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.j2objc:j2objc-annotations:2.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:common:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:context:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:gateway-generator:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:gateway:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:messaging:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:platform:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:utilities:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.j2objc:j2objc-annotations:2.8=compileClasspath,testCompileClasspath +com.mx.path-core:common:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:context:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:gateway-generator:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:gateway:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:messaging:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:platform:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:testing:6.0.3=testCompileClasspath,testRuntimeClasspath +com.mx.path-core:utilities:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.squareup:javapoet:1.13.0=runtimeClasspath,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=runtimeClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.11=runtimeClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.14=runtimeClasspath,testRuntimeClasspath commons-collections:commons-collections:3.2.2=runtimeClasspath,testRuntimeClasspath commons-io:commons-io:2.20.0=spotbugs commons-logging:commons-logging:1.3.5=runtimeClasspath,testRuntimeClasspath @@ -58,23 +48,23 @@ jakarta.xml.bind:jakarta.xml.bind-api:4.0.4=compileClasspath,runtimeClasspath,te jakarta.xml.soap:jakarta.xml.soap-api:3.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath jaxen:jaxen:2.0.0=spotbugs net.bytebuddy:byte-buddy-agent:1.14.1=testCompileClasspath,testRuntimeClasspath -net.bytebuddy:byte-buddy:1.14.1=testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy:1.14.1=testCompileClasspath +net.bytebuddy:byte-buddy:1.18.3=testRuntimeClasspath net.sf.saxon:Saxon-HE:12.9=spotbugs org.apache.bcel:bcel:6.11.0=spotbugs org.apache.commons:commons-lang3:3.19.0=spotbugs org.apache.commons:commons-lang3:3.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.commons:commons-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.httpcomponents:httpclient:4.5.14=runtimeClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpcore:4.4.16=runtimeClasspath,testRuntimeClasspath +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 +org.assertj:assertj-core:3.27.7=testRuntimeClasspath +org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.codehaus.groovy:groovy:3.0.24=testCompileClasspath,testRuntimeClasspath -org.codehaus.woodstox:stax2-api:4.2.1=compileClasspath,testCompileClasspath -org.codehaus.woodstox:stax2-api:4.2.2=runtimeClasspath,testRuntimeClasspath +org.codehaus.woodstox:stax2-api:4.2.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.dom4j:dom4j:2.2.0=spotbugs org.eclipse.angus:angus-activation:2.0.3=runtimeClasspath,testRuntimeClasspath org.glassfish.jaxb:jaxb-core:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath @@ -86,12 +76,10 @@ 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.platform:junit-platform-commons:1.12.2=testCompileClasspath -org.junit.platform:junit-platform-commons:1.14.0=testRuntimeClasspath -org.junit.platform:junit-platform-engine:1.12.2=testCompileClasspath -org.junit.platform:junit-platform-engine:1.14.0=testRuntimeClasspath -org.junit:junit-bom:5.12.2=testCompileClasspath -org.junit:junit-bom:5.14.0=runtimeClasspath,spotbugs,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=annotationProcessor,spotbugs,testAnnotationProcessor,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 @@ -105,7 +93,6 @@ org.ow2.asm:asm-tree:9.9=spotbugs org.ow2.asm:asm-util:9.9=spotbugs org.ow2.asm:asm:9.2=jacocoAnt org.ow2.asm:asm:9.9=spotbugs -org.projectlombok:lombok:1.18.24=runtimeClasspath,testRuntimeClasspath org.projectlombok:lombok:1.18.42=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath org.reflections:reflections:0.10.2=runtimeClasspath,testRuntimeClasspath org.slf4j:slf4j-api:1.7.32=runtimeClasspath,testRuntimeClasspath diff --git a/mdx-gateways/.gitignore b/mdx-gateways/.gitignore deleted file mode 100644 index ac44d484..00000000 --- a/mdx-gateways/.gitignore +++ /dev/null @@ -1 +0,0 @@ -../gateway-generator/build \ No newline at end of file diff --git a/mdx-gateways/build.gradle b/mdx-gateways/build.gradle index b2ba88a1..44ee63ee 100644 --- a/mdx-gateways/build.gradle +++ b/mdx-gateways/build.gradle @@ -14,7 +14,6 @@ dependencies { api project(":mdx-models") annotationProcessor project(":mdx-gateway-generator") - //testing dependencies - testImplementation "org.slf4j:slf4j-simple:1.7.30" - testImplementation "io.opentracing:opentracing-mock:0.33.0" + testImplementation "org.slf4j:slf4j-simple" + testImplementation "io.opentracing:opentracing-mock" } diff --git a/mdx-gateways/gradle.lockfile b/mdx-gateways/gradle.lockfile index 1811ea62..c17d9c1c 100644 --- a/mdx-gateways/gradle.lockfile +++ b/mdx-gateways/gradle.lockfile @@ -3,57 +3,45 @@ # This file is expected to be part of source control. com.auth0:java-jwt:4.5.1=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.datadoghq:dd-trace-api:1.38.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-annotations:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.core:jackson-annotations:2.21=annotationProcessor,runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-core:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.core:jackson-core:2.21.0=annotationProcessor,runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-databind:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.core:jackson-databind:2.21.0=annotationProcessor,runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.21.0=annotationProcessor,runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.0=annotationProcessor,runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson:jackson-bom:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson:jackson-bom:2.21.0=annotationProcessor,runtimeClasspath,testRuntimeClasspath -com.fasterxml.woodstox:woodstox-core:6.3.1=compileClasspath,testCompileClasspath -com.fasterxml.woodstox:woodstox-core:7.1.1=annotationProcessor,runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.21=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-core:2.21.1=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.21.1=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.21.1=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.1=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson:jackson-bom:2.21.1=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.woodstox:woodstox-core:7.1.1=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.github.oowekyala.ooxml:nice-xml-messages:3.1=pmd com.github.rholder:guava-retrying:2.0.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.spotbugs:spotbugs-annotations:4.9.8=annotationProcessor,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.github.spotbugs:spotbugs-annotations:4.9.8=annotationProcessor,compileClasspath,spotbugs,testAnnotationProcessor,testCompileClasspath com.github.spotbugs:spotbugs:4.9.8=spotbugs com.github.stephenc.jcip:jcip-annotations:1.0-1=spotbugs -com.google.auto.service:auto-service-annotations:1.1.1=annotationProcessor -com.google.auto.service:auto-service:1.1.1=annotationProcessor -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.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,runtimeClasspath,spotbugs,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.code.gson:gson:2.13.2=annotationProcessor,compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath com.google.errorprone:error_prone_annotations:2.36.0=checkstyle -com.google.errorprone:error_prone_annotations:2.38.0=pmd -com.google.errorprone:error_prone_annotations:2.41.0=annotationProcessor,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=annotationProcessor,compileClasspath,pmd,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:32.1.3-jre=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath 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:2.8=compileClasspath,testCompileClasspath com.google.j2objc:j2objc-annotations:3.0.0=checkstyle -com.mx.path-core:common:6.0.1=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:context:6.0.1=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:gateway-generator:6.0.1=annotationProcessor -com.mx.path-core:gateway:6.0.1=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:messaging:6.0.1=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:platform:6.0.1=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:utilities:6.0.1=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:common:6.0.3=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:context:6.0.3=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:gateway-generator:6.0.3=annotationProcessor +com.mx.path-core:gateway:6.0.3=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:messaging:6.0.3=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:platform:6.0.3=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:testing:6.0.3=testCompileClasspath,testRuntimeClasspath +com.mx.path-core:utilities:6.0.3=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath 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=annotationProcessor,checkstyle,runtimeClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.11=annotationProcessor,runtimeClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.15=checkstyle,pmd +commons-codec:commons-codec:1.14=annotationProcessor,runtimeClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.15=checkstyle commons-collections:commons-collections:3.2.2=annotationProcessor,checkstyle,runtimeClasspath,testRuntimeClasspath commons-io:commons-io:2.20.0=spotbugs commons-logging:commons-logging:1.3.5=annotationProcessor,runtimeClasspath,testRuntimeClasspath @@ -69,47 +57,47 @@ jakarta.xml.bind:jakarta.xml.bind-api:4.0.4=annotationProcessor,compileClasspath jakarta.xml.soap:jakarta.xml.soap-api:3.0.2=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath jaxen:jaxen:2.0.0=spotbugs net.bytebuddy:byte-buddy-agent:1.14.1=testCompileClasspath,testRuntimeClasspath -net.bytebuddy:byte-buddy:1.14.1=testCompileClasspath,testRuntimeClasspath -net.sf.saxon:Saxon-HE:12.5=checkstyle,pmd -net.sf.saxon:Saxon-HE:12.9=spotbugs -net.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 +net.bytebuddy:byte-buddy:1.14.1=testCompileClasspath +net.bytebuddy:byte-buddy:1.18.3=testRuntimeClasspath +net.sf.saxon:Saxon-HE:12.5=checkstyle +net.sf.saxon:Saxon-HE:12.9=pmd,spotbugs +net.sourceforge.pmd:pmd-ant:7.22.0=pmd +net.sourceforge.pmd:pmd-core:7.22.0=pmd +net.sourceforge.pmd:pmd-java:7.22.0=pmd org.antlr:antlr4-runtime:4.13.2=checkstyle org.antlr:antlr4-runtime:4.9.3=pmd org.apache.bcel:bcel:6.11.0=spotbugs -org.apache.commons:commons-lang3:3.18.0=pmd +org.apache.commons:commons-lang3:3.18.0=checkstyle org.apache.commons:commons-lang3:3.19.0=spotbugs -org.apache.commons:commons-lang3:3.20.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-lang3:3.8.1=checkstyle +org.apache.commons:commons-lang3:3.20.0=annotationProcessor,compileClasspath,pmd,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.commons:commons-text:1.14.0=spotbugs org.apache.commons:commons-text:1.15.0=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.commons:commons-text:1.3=checkstyle -org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle,pmd -org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle,pmd -org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd -org.apache.httpcomponents:httpclient:4.5.13=annotationProcessor,checkstyle,runtimeClasspath,testRuntimeClasspath -org.apache.httpcomponents:httpcore:4.4.13=annotationProcessor,runtimeClasspath,testRuntimeClasspath +org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle +org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle +org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle +org.apache.httpcomponents:httpclient:4.5.13=checkstyle +org.apache.httpcomponents:httpclient:4.5.14=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.httpcomponents:httpcore:4.4.16=annotationProcessor,runtimeClasspath,testRuntimeClasspath +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.33.0=annotationProcessor -org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.assertj:assertj-core:3.27.7=testRuntimeClasspath +org.checkerframework:checker-qual:3.37.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.53.1=pmd org.codehaus.groovy:groovy:3.0.24=testCompileClasspath,testRuntimeClasspath org.codehaus.plexus:plexus-classworlds:2.6.0=checkstyle org.codehaus.plexus:plexus-component-annotations:2.1.0=checkstyle org.codehaus.plexus:plexus-container-default:2.1.0=checkstyle org.codehaus.plexus:plexus-utils:3.3.0=checkstyle -org.codehaus.woodstox:stax2-api:4.2.1=compileClasspath,testCompileClasspath -org.codehaus.woodstox:stax2-api:4.2.2=annotationProcessor,runtimeClasspath,testRuntimeClasspath +org.codehaus.woodstox:stax2-api:4.2.2=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.dom4j:dom4j:2.2.0=spotbugs org.eclipse.angus:angus-activation:2.0.3=annotationProcessor,runtimeClasspath,testRuntimeClasspath org.glassfish.jaxb:jaxb-core:4.0.6=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath @@ -122,12 +110,10 @@ 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.platform:junit-platform-commons:1.12.2=testCompileClasspath -org.junit.platform:junit-platform-commons:1.14.0=testRuntimeClasspath -org.junit.platform:junit-platform-engine:1.12.2=testCompileClasspath -org.junit.platform:junit-platform-engine:1.14.0=testRuntimeClasspath -org.junit:junit-bom:5.12.2=testCompileClasspath -org.junit:junit-bom:5.14.0=annotationProcessor,runtimeClasspath,spotbugs,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=annotationProcessor,spotbugs,testAnnotationProcessor,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 @@ -140,8 +126,8 @@ 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.2=jacocoAnt -org.ow2.asm:asm:9.8=pmd org.ow2.asm:asm:9.9=spotbugs +org.ow2.asm:asm:9.9.1=pmd org.pcollections:pcollections:4.0.2=pmd org.projectlombok:lombok:1.18.42=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath org.reflections:reflections:0.10.2=annotationProcessor,checkstyle,runtimeClasspath,testRuntimeClasspath @@ -153,7 +139,7 @@ org.slf4j:slf4j-simple:1.7.30=testCompileClasspath,testRuntimeClasspath 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=checkstyle,pmd -org.xmlresolver:xmlresolver:5.3.3=spotbugs +org.xmlresolver:xmlresolver:5.2.2=checkstyle +org.xmlresolver:xmlresolver:5.3.3=pmd,spotbugs org.yaml:snakeyaml:2.4=annotationProcessor,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath empty=signatures,spotbugsPlugins diff --git a/mdx-models/build.gradle b/mdx-models/build.gradle index 344fb554..cb888b68 100644 --- a/mdx-models/build.gradle +++ b/mdx-models/build.gradle @@ -6,9 +6,8 @@ coppuccino { dependencies { api "com.mx.path-core:gateway" - api "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.14.0-rc1" - api "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.0-rc1" + api "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.21.1" + api "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.1" implementation "commons-beanutils:commons-beanutils:1.11.0" - testImplementation "com.mx.path-core:testing" } diff --git a/mdx-models/gradle.lockfile b/mdx-models/gradle.lockfile index 4ca81036..fd207971 100644 --- a/mdx-models/gradle.lockfile +++ b/mdx-models/gradle.lockfile @@ -3,31 +3,22 @@ # This file is expected to be part of source control. com.auth0:java-jwt:4.5.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.datadoghq:dd-trace-api:1.38.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-annotations:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.core:jackson-annotations:2.21=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-core:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.core:jackson-core:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-databind:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.core:jackson-databind:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson:jackson-bom:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson:jackson-bom:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.woodstox:woodstox-core:6.3.1=compileClasspath,testCompileClasspath -com.fasterxml.woodstox:woodstox-core:7.1.1=runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.21=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-core:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson:jackson-bom:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.woodstox:woodstox-core:7.1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.github.oowekyala.ooxml:nice-xml-messages:3.1=pmd com.github.rholder:guava-retrying:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.spotbugs:spotbugs-annotations:4.9.8=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.github.spotbugs:spotbugs-annotations:4.9.8=annotationProcessor,compileClasspath,spotbugs,testAnnotationProcessor,testCompileClasspath com.github.spotbugs:spotbugs:4.9.8=spotbugs 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.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,runtimeClasspath,spotbugs,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.code.gson:gson:2.13.2=compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath com.google.errorprone:error_prone_annotations:2.36.0=checkstyle -com.google.errorprone:error_prone_annotations:2.38.0=pmd -com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,pmd,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 @@ -35,20 +26,20 @@ 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.0.0=checkstyle -com.mx.path-core:common:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:context:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:gateway:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:messaging:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:platform:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:testing:6.0.1=testCompileClasspath,testRuntimeClasspath -com.mx.path-core:utilities:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:common:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:context:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:gateway:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:messaging:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:platform:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:testing:6.0.3=testCompileClasspath,testRuntimeClasspath +com.mx.path-core:utilities:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath 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=runtimeClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.15=checkstyle,pmd +commons-codec:commons-codec:1.14=runtimeClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.15=checkstyle 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 @@ -65,29 +56,29 @@ jaxen:jaxen:2.0.0=spotbugs net.bytebuddy:byte-buddy-agent:1.14.1=testCompileClasspath,testRuntimeClasspath net.bytebuddy:byte-buddy:1.14.1=testCompileClasspath net.bytebuddy:byte-buddy:1.18.3=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 +net.sf.saxon:Saxon-HE:12.5=checkstyle +net.sf.saxon:Saxon-HE:12.9=pmd,spotbugs +net.sourceforge.pmd:pmd-ant:7.22.0=pmd +net.sourceforge.pmd:pmd-core:7.22.0=pmd +net.sourceforge.pmd:pmd-java:7.22.0=pmd org.antlr:antlr4-runtime:4.13.2=checkstyle org.antlr:antlr4-runtime:4.9.3=pmd org.apache.bcel:bcel:6.11.0=spotbugs -org.apache.commons:commons-lang3:3.18.0=pmd +org.apache.commons:commons-lang3:3.18.0=checkstyle org.apache.commons:commons-lang3:3.19.0=spotbugs -org.apache.commons:commons-lang3:3.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-lang3:3.8.1=checkstyle +org.apache.commons:commons-lang3:3.20.0=compileClasspath,pmd,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.commons:commons-text:1.14.0=spotbugs org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.commons:commons-text:1.3=checkstyle -org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle,pmd -org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle,pmd -org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd -org.apache.httpcomponents:httpclient:4.5.13=checkstyle,runtimeClasspath,testRuntimeClasspath -org.apache.httpcomponents:httpcore:4.4.13=runtimeClasspath,testRuntimeClasspath +org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle +org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle +org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle +org.apache.httpcomponents:httpclient:4.5.13=checkstyle +org.apache.httpcomponents:httpclient:4.5.14=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.httpcomponents:httpcore:4.4.16=runtimeClasspath,testRuntimeClasspath +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 @@ -97,14 +88,13 @@ org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath org.assertj:assertj-core:3.27.7=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.53.1=pmd org.codehaus.groovy:groovy:3.0.24=testCompileClasspath,testRuntimeClasspath org.codehaus.plexus:plexus-classworlds:2.6.0=checkstyle org.codehaus.plexus:plexus-component-annotations:2.1.0=checkstyle org.codehaus.plexus:plexus-container-default:2.1.0=checkstyle org.codehaus.plexus:plexus-utils:3.3.0=checkstyle -org.codehaus.woodstox:stax2-api:4.2.1=compileClasspath,testCompileClasspath -org.codehaus.woodstox:stax2-api:4.2.2=runtimeClasspath,testRuntimeClasspath +org.codehaus.woodstox:stax2-api:4.2.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.dom4j:dom4j:2.2.0=spotbugs org.eclipse.angus:angus-activation:2.0.3=runtimeClasspath,testRuntimeClasspath org.glassfish.jaxb:jaxb-core:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath @@ -117,13 +107,10 @@ 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=testRuntimeClasspath -org.junit.platform:junit-platform-commons:1.12.2=testCompileClasspath -org.junit.platform:junit-platform-commons:1.14.0=testRuntimeClasspath -org.junit.platform:junit-platform-engine:1.12.2=testCompileClasspath -org.junit.platform:junit-platform-engine:1.14.0=testRuntimeClasspath -org.junit:junit-bom:5.12.2=testCompileClasspath -org.junit:junit-bom:5.14.0=runtimeClasspath,spotbugs,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=annotationProcessor,spotbugs,testAnnotationProcessor,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 @@ -136,8 +123,8 @@ 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.2=jacocoAnt -org.ow2.asm:asm:9.8=pmd org.ow2.asm:asm:9.9=spotbugs +org.ow2.asm:asm:9.9.1=pmd 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,runtimeClasspath,testRuntimeClasspath @@ -147,7 +134,7 @@ org.slf4j:slf4j-api:2.0.17=spotbugs,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=checkstyle,pmd -org.xmlresolver:xmlresolver:5.3.3=spotbugs +org.xmlresolver:xmlresolver:5.2.2=checkstyle +org.xmlresolver:xmlresolver:5.3.3=pmd,spotbugs org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath empty=signatures,spotbugsPlugins diff --git a/mdx-web/build.gradle b/mdx-web/build.gradle index 3deee366..f955f8e4 100644 --- a/mdx-web/build.gradle +++ b/mdx-web/build.gradle @@ -5,17 +5,15 @@ coppuccino { } dependencies { - implementation platform("org.springframework.boot:spring-boot-starter-parent:${project.ext.springVersion}") - implementation "org.springframework.boot:spring-boot-starter-web" + api platform("org.springframework.boot:spring-boot-starter-parent:${project.ext.springVersion}") + api "org.springframework.boot:spring-boot-starter-web" api project(":mdx-gateways") - implementation "commons-codec:commons-codec:1.15" + + implementation "commons-codec:commons-codec" implementation "commons-io:commons-io:2.14.0" - //testing dependencies - testImplementation "com.mx.path-core:testing" - testImplementation "io.opentracing:opentracing-mock:0.33.0" + testImplementation "io.opentracing:opentracing-mock" testImplementation "org.springframework.boot:spring-boot-starter-test" - testImplementation "org.mockito:mockito-inline:[5.0,6.0)" testRuntimeOnly "org.junit.platform:junit-platform-launcher" } diff --git a/mdx-web/gradle.lockfile b/mdx-web/gradle.lockfile index a3d2b60d..449b8cdc 100644 --- a/mdx-web/gradle.lockfile +++ b/mdx-web/gradle.lockfile @@ -1,38 +1,28 @@ # This is a Gradle generated file for dependency locking. # Manual edits can break the build and are not advised. # This file is expected to be part of source control. -ch.qos.logback:logback-classic:1.5.21=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -ch.qos.logback:logback-core:1.5.21=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +ch.qos.logback:logback-classic:1.5.32=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +ch.qos.logback:logback-core:1.5.32=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.auth0:java-jwt:4.5.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.datadoghq:dd-trace-api:1.38.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-annotations:2.19.4=compileClasspath,testCompileClasspath -com.fasterxml.jackson.core:jackson-annotations:2.21=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-core:2.19.4=compileClasspath,testCompileClasspath -com.fasterxml.jackson.core:jackson-core:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-databind:2.19.4=compileClasspath,testCompileClasspath -com.fasterxml.jackson.core:jackson-databind:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.19.4=compileClasspath,testCompileClasspath -com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.19.4=compileClasspath,testCompileClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.19.4=compileClasspath,testCompileClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.module:jackson-module-parameter-names:2.19.4=compileClasspath,testCompileClasspath -com.fasterxml.jackson.module:jackson-module-parameter-names:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson:jackson-bom:2.19.4=compileClasspath,testCompileClasspath -com.fasterxml.jackson:jackson-bom:2.21.0=runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.21=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-core:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.module:jackson-module-parameter-names:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson:jackson-bom:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.fasterxml.woodstox:woodstox-core:7.1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.github.oowekyala.ooxml:nice-xml-messages:3.1=pmd com.github.rholder:guava-retrying:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.spotbugs:spotbugs-annotations:4.9.8=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.github.spotbugs:spotbugs-annotations:4.9.8=annotationProcessor,compileClasspath,spotbugs,testAnnotationProcessor,testCompileClasspath com.github.spotbugs:spotbugs:4.9.8=spotbugs 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.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,runtimeClasspath,spotbugs,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.code.gson:gson:2.13.2=compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath com.google.errorprone:error_prone_annotations:2.36.0=checkstyle -com.google.errorprone:error_prone_annotations:2.38.0=pmd -com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,pmd,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 @@ -41,20 +31,20 @@ com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=chec com.google.j2objc:j2objc-annotations:2.8=compileClasspath,testCompileClasspath com.google.j2objc:j2objc-annotations:3.0.0=checkstyle com.jayway.jsonpath:json-path:2.9.0=testCompileClasspath,testRuntimeClasspath -com.mx.path-core:common:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:context:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:gateway:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:messaging:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:platform:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:testing:6.0.1=testCompileClasspath,testRuntimeClasspath -com.mx.path-core:utilities:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:common:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:context:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:gateway:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:messaging:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:platform:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:testing:6.0.3=testCompileClasspath,testRuntimeClasspath +com.mx.path-core:utilities:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath 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 com.vaadin.external.google:android-json:0.0.20131108.vaadin1=testCompileClasspath,testRuntimeClasspath commons-beanutils:commons-beanutils:1.11.0=checkstyle,runtimeClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.15=checkstyle,pmd +commons-codec:commons-codec:1.15=checkstyle commons-codec:commons-codec:1.18.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath commons-collections:commons-collections:3.2.2=checkstyle,runtimeClasspath,testRuntimeClasspath commons-io:commons-io:2.14.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath @@ -63,8 +53,8 @@ commons-logging:commons-logging:1.3.5=runtimeClasspath,testRuntimeClasspath info.picocli:picocli:4.7.7=checkstyle io.github.cdimascio:dotenv-java:2.3.2=runtimeClasspath,testRuntimeClasspath io.leangen.geantyref:geantyref:1.3.16=testRuntimeClasspath -io.micrometer:micrometer-commons:1.15.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.micrometer:micrometer-observation:1.15.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.micrometer:micrometer-commons:1.15.9=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.micrometer:micrometer-observation:1.15.9=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath io.opentracing:opentracing-api:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath io.opentracing:opentracing-mock:0.33.0=testCompileClasspath,testRuntimeClasspath io.opentracing:opentracing-noop:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath @@ -75,48 +65,48 @@ jakarta.xml.bind:jakarta.xml.bind-api:4.0.4=compileClasspath,runtimeClasspath,te 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.8=testCompileClasspath,testRuntimeClasspath -net.bytebuddy:byte-buddy:1.17.8=testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy:1.18.3=testCompileClasspath,testRuntimeClasspath net.minidev:accessors-smart:2.5.2=testCompileClasspath,testRuntimeClasspath net.minidev:json-smart:2.5.2=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 +net.sf.saxon:Saxon-HE:12.5=checkstyle +net.sf.saxon:Saxon-HE:12.9=pmd,spotbugs +net.sourceforge.pmd:pmd-ant:7.22.0=pmd +net.sourceforge.pmd:pmd-core:7.22.0=pmd +net.sourceforge.pmd:pmd-java:7.22.0=pmd org.antlr:antlr4-runtime:4.13.2=checkstyle org.antlr:antlr4-runtime:4.9.3=pmd org.apache.bcel:bcel:6.11.0=spotbugs -org.apache.commons:commons-lang3:3.18.0=pmd +org.apache.commons:commons-lang3:3.18.0=checkstyle org.apache.commons:commons-lang3:3.19.0=spotbugs -org.apache.commons:commons-lang3:3.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-lang3:3.8.1=checkstyle +org.apache.commons:commons-lang3:3.20.0=compileClasspath,pmd,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.commons:commons-text:1.14.0=spotbugs org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.commons:commons-text:1.3=checkstyle -org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle,pmd -org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle,pmd -org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd -org.apache.httpcomponents:httpclient:4.5.13=checkstyle,runtimeClasspath,testRuntimeClasspath +org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle +org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle +org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle +org.apache.httpcomponents:httpclient:4.5.13=checkstyle +org.apache.httpcomponents:httpclient:4.5.14=runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.14=checkstyle org.apache.httpcomponents:httpcore:4.4.16=runtimeClasspath,testRuntimeClasspath org.apache.logging.log4j:log4j-api:2.24.3=compileClasspath,runtimeClasspath,testCompileClasspath,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.apache.logging.log4j:log4j-to-slf4j:2.24.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath 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.tomcat.embed:tomcat-embed-core:10.1.49=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.tomcat.embed:tomcat-embed-el:10.1.49=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.tomcat.embed:tomcat-embed-websocket:10.1.49=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.tomcat.embed:tomcat-embed-core:10.1.52=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.tomcat.embed:tomcat-embed-el:10.1.52=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.tomcat.embed:tomcat-embed-websocket:10.1.52=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.xbean:xbean-reflect:3.7=checkstyle org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath -org.assertj:assertj-core:3.27.6=testCompileClasspath,testRuntimeClasspath +org.assertj:assertj-core:3.27.7=testCompileClasspath,testRuntimeClasspath org.awaitility:awaitility:4.2.2=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.53.1=pmd 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 @@ -135,20 +125,14 @@ 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.12.2=testCompileClasspath -org.junit.jupiter:junit-jupiter-api:5.14.0=testRuntimeClasspath +org.junit.jupiter:junit-jupiter-api:5.14.0=testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-engine:5.14.0=testRuntimeClasspath -org.junit.jupiter:junit-jupiter-params:5.12.2=testCompileClasspath -org.junit.jupiter:junit-jupiter-params:5.14.0=testRuntimeClasspath -org.junit.jupiter:junit-jupiter:5.12.2=testCompileClasspath -org.junit.jupiter:junit-jupiter:5.14.0=testRuntimeClasspath -org.junit.platform:junit-platform-commons:1.12.2=testCompileClasspath -org.junit.platform:junit-platform-commons:1.14.0=testRuntimeClasspath -org.junit.platform:junit-platform-engine:1.12.2=testCompileClasspath -org.junit.platform:junit-platform-engine:1.14.0=testRuntimeClasspath +org.junit.jupiter:junit-jupiter-params:5.14.0=testCompileClasspath,testRuntimeClasspath +org.junit.jupiter:junit-jupiter: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.platform:junit-platform-launcher:1.14.0=testRuntimeClasspath -org.junit:junit-bom:5.12.2=testCompileClasspath -org.junit:junit-bom:5.14.0=runtimeClasspath,spotbugs,testRuntimeClasspath +org.junit:junit-bom:5.14.0=annotationProcessor,spotbugs,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath org.mockito:mockito-core:5.17.0=testCompileClasspath,testRuntimeClasspath org.mockito:mockito-inline:5.2.0=testCompileClasspath,testRuntimeClasspath org.mockito:mockito-junit-jupiter:5.17.0=testCompileClasspath,testRuntimeClasspath @@ -163,8 +147,8 @@ org.ow2.asm:asm-tree:9.9=spotbugs org.ow2.asm:asm-util:9.9=spotbugs org.ow2.asm:asm:9.2=jacocoAnt org.ow2.asm:asm:9.7.1=testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm:9.8=pmd org.ow2.asm:asm:9.9=spotbugs +org.ow2.asm:asm:9.9.1=pmd 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,runtimeClasspath,testRuntimeClasspath @@ -175,28 +159,28 @@ org.slf4j:slf4j-api:2.0.17=compileClasspath,runtimeClasspath,spotbugs,spotbugsSl 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.springframework.boot:spring-boot-autoconfigure:3.5.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.springframework.boot:spring-boot-starter-json:3.5.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.springframework.boot:spring-boot-starter-logging:3.5.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.springframework.boot:spring-boot-starter-parent:3.5.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.springframework.boot:spring-boot-starter-test:3.5.8=testCompileClasspath,testRuntimeClasspath -org.springframework.boot:spring-boot-starter-tomcat:3.5.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.springframework.boot:spring-boot-starter-web:3.5.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.springframework.boot:spring-boot-starter:3.5.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.springframework.boot:spring-boot-test-autoconfigure:3.5.8=testCompileClasspath,testRuntimeClasspath -org.springframework.boot:spring-boot-test:3.5.8=testCompileClasspath,testRuntimeClasspath -org.springframework.boot:spring-boot:3.5.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.springframework:spring-aop:6.2.14=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.springframework:spring-beans:6.2.14=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.springframework:spring-context:6.2.14=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.springframework:spring-core:6.2.14=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.springframework:spring-expression:6.2.14=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.springframework:spring-jcl:6.2.14=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.springframework:spring-test:6.2.14=testCompileClasspath,testRuntimeClasspath -org.springframework:spring-web:6.2.14=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.springframework:spring-webmvc:6.2.14=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd -org.xmlresolver:xmlresolver:5.3.3=spotbugs +org.springframework.boot:spring-boot-autoconfigure:3.5.11=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework.boot:spring-boot-starter-json:3.5.11=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework.boot:spring-boot-starter-logging:3.5.11=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework.boot:spring-boot-starter-parent:3.5.11=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework.boot:spring-boot-starter-test:3.5.11=testCompileClasspath,testRuntimeClasspath +org.springframework.boot:spring-boot-starter-tomcat:3.5.11=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework.boot:spring-boot-starter-web:3.5.11=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework.boot:spring-boot-starter:3.5.11=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework.boot:spring-boot-test-autoconfigure:3.5.11=testCompileClasspath,testRuntimeClasspath +org.springframework.boot:spring-boot-test:3.5.11=testCompileClasspath,testRuntimeClasspath +org.springframework.boot:spring-boot:3.5.11=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-aop:6.2.16=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-beans:6.2.16=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-context:6.2.16=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-core:6.2.16=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-expression:6.2.16=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-jcl:6.2.16=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-test:6.2.16=testCompileClasspath,testRuntimeClasspath +org.springframework:spring-web:6.2.16=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-webmvc:6.2.16=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.xmlresolver:xmlresolver:5.2.2=checkstyle +org.xmlresolver:xmlresolver:5.3.3=pmd,spotbugs org.xmlunit:xmlunit-core:2.10.4=testCompileClasspath,testRuntimeClasspath org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath empty=signatures,spotbugsPlugins diff --git a/platform/build.gradle b/platform/build.gradle index f145280f..1f38cff7 100644 --- a/platform/build.gradle +++ b/platform/build.gradle @@ -1,7 +1,6 @@ plugins { id "java-platform" id "maven-publish" - id "signing" } javaPlatform { @@ -11,8 +10,7 @@ javaPlatform { // Dependency versions aren't resolved, by default. Check this out to resolve this issue: // https://github.com/gradle/gradle/issues/8887 dependencies { - api platform("com.mx.path-core:platform:${project.ext.pathSDKVersion}") - api platform("org.springframework.boot:spring-boot-starter-parent:${project.ext.springVersion}") + api platform("com.mx.path-core:platform:${project.ext.pathCoreVersion}") constraints { api project(":mdx-gateway-generator") @@ -27,47 +25,6 @@ publishing { publications { bom(MavenPublication) { from components.javaPlatform - pom { - groupId = project.group - artifactId = project.name - name = project.name - description = project.description - url = "https://github.com/mxenabled/path-mdx-model" - - developers { - developer { - name = "MX" - email = "path@mx.com" - organization = "MX Technologies Inc." - url = "http://www.mx.com" - } - } - - licenses { - license { - name = "Proprietary" - url = "https://github.com/mxenabled/path-mdx-model/blob/master/LICENSE" - distribution = "repo" - } - } - - scm { - connection = "scm:git:git@github.com:mxenabled/path-mdx-model.git" - url = "https://github.com/mxenabled/path-mdx-model/tree/master" - } - } } } } - -signing { - def signingKey = findProperty("signingKey") - def signingPassword = findProperty("signingKeyPassword") - if (signingKey != null && signingKey != "") { - useInMemoryPgpKeys(signingKey, signingPassword) - sign publishing.publications.bom - logger.lifecycle("Configuring signing for ${project.name}") - } else { - logger.lifecycle("Skipping artifact signing for ${project.name} - missing signing key") - } -} diff --git a/realtime/build.gradle b/realtime/build.gradle index 6c2f4c91..f3b6035c 100644 --- a/realtime/build.gradle +++ b/realtime/build.gradle @@ -7,6 +7,4 @@ coppuccino { dependencies { implementation project(":mdx-models") implementation "com.mx.path-core:http" - - testImplementation "com.mx.path-core:testing" } diff --git a/realtime/gradle.lockfile b/realtime/gradle.lockfile index 47c17f8e..5fe6bd4a 100644 --- a/realtime/gradle.lockfile +++ b/realtime/gradle.lockfile @@ -3,31 +3,22 @@ # This file is expected to be part of source control. com.auth0:java-jwt:4.5.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.datadoghq:dd-trace-api:1.38.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-annotations:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.core:jackson-annotations:2.21=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-core:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.core:jackson-core:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-databind:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.core:jackson-databind:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson:jackson-bom:2.14.0-rc1=compileClasspath,testCompileClasspath -com.fasterxml.jackson:jackson-bom:2.21.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.woodstox:woodstox-core:6.3.1=compileClasspath,testCompileClasspath -com.fasterxml.woodstox:woodstox-core:7.1.1=runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.21=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-core:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson:jackson-bom:2.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.woodstox:woodstox-core:7.1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.github.oowekyala.ooxml:nice-xml-messages:3.1=pmd com.github.rholder:guava-retrying:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.spotbugs:spotbugs-annotations:4.9.8=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.github.spotbugs:spotbugs-annotations:4.9.8=annotationProcessor,compileClasspath,spotbugs,testAnnotationProcessor,testCompileClasspath com.github.spotbugs:spotbugs:4.9.8=spotbugs 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.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,runtimeClasspath,spotbugs,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.code.gson:gson:2.13.2=compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath com.google.errorprone:error_prone_annotations:2.36.0=checkstyle -com.google.errorprone:error_prone_annotations:2.38.0=pmd -com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,pmd,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 @@ -35,21 +26,21 @@ 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.0.0=checkstyle -com.mx.path-core:common:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:context:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:gateway:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:http:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:messaging:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:platform:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.mx.path-core:testing:6.0.1=testCompileClasspath,testRuntimeClasspath -com.mx.path-core:utilities:6.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:common:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:context:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:gateway:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:http:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:messaging:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:platform:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.mx.path-core:testing:6.0.3=testCompileClasspath,testRuntimeClasspath +com.mx.path-core:utilities:6.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath 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,runtimeClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.11=runtimeClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.15=checkstyle,pmd +commons-codec:commons-codec:1.14=runtimeClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.15=checkstyle commons-collections:commons-collections:3.2.2=checkstyle,runtimeClasspath,testRuntimeClasspath commons-io:commons-io:2.20.0=spotbugs commons-logging:commons-logging:1.3.5=runtimeClasspath,testRuntimeClasspath @@ -66,29 +57,29 @@ jaxen:jaxen:2.0.0=spotbugs net.bytebuddy:byte-buddy-agent:1.14.1=testCompileClasspath,testRuntimeClasspath net.bytebuddy:byte-buddy:1.14.1=testCompileClasspath net.bytebuddy:byte-buddy:1.18.3=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 +net.sf.saxon:Saxon-HE:12.5=checkstyle +net.sf.saxon:Saxon-HE:12.9=pmd,spotbugs +net.sourceforge.pmd:pmd-ant:7.22.0=pmd +net.sourceforge.pmd:pmd-core:7.22.0=pmd +net.sourceforge.pmd:pmd-java:7.22.0=pmd org.antlr:antlr4-runtime:4.13.2=checkstyle org.antlr:antlr4-runtime:4.9.3=pmd org.apache.bcel:bcel:6.11.0=spotbugs -org.apache.commons:commons-lang3:3.18.0=pmd +org.apache.commons:commons-lang3:3.18.0=checkstyle org.apache.commons:commons-lang3:3.19.0=spotbugs -org.apache.commons:commons-lang3:3.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-lang3:3.8.1=checkstyle +org.apache.commons:commons-lang3:3.20.0=compileClasspath,pmd,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.commons:commons-text:1.14.0=spotbugs org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.commons:commons-text:1.3=checkstyle -org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle,pmd -org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle,pmd -org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd -org.apache.httpcomponents:httpclient:4.5.13=checkstyle,runtimeClasspath,testRuntimeClasspath -org.apache.httpcomponents:httpcore:4.4.13=runtimeClasspath,testRuntimeClasspath +org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle +org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle +org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle +org.apache.httpcomponents:httpclient:4.5.13=checkstyle +org.apache.httpcomponents:httpclient:4.5.14=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.httpcomponents:httpcore:4.4.16=runtimeClasspath,testRuntimeClasspath +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 @@ -98,14 +89,13 @@ org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath org.assertj:assertj-core:3.27.7=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.53.1=pmd org.codehaus.groovy:groovy:3.0.24=testCompileClasspath,testRuntimeClasspath org.codehaus.plexus:plexus-classworlds:2.6.0=checkstyle org.codehaus.plexus:plexus-component-annotations:2.1.0=checkstyle org.codehaus.plexus:plexus-container-default:2.1.0=checkstyle org.codehaus.plexus:plexus-utils:3.3.0=checkstyle -org.codehaus.woodstox:stax2-api:4.2.1=compileClasspath,testCompileClasspath -org.codehaus.woodstox:stax2-api:4.2.2=runtimeClasspath,testRuntimeClasspath +org.codehaus.woodstox:stax2-api:4.2.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.dom4j:dom4j:2.2.0=spotbugs org.eclipse.angus:angus-activation:2.0.3=runtimeClasspath,testRuntimeClasspath org.glassfish.jaxb:jaxb-core:4.0.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath @@ -118,13 +108,10 @@ 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=testRuntimeClasspath -org.junit.platform:junit-platform-commons:1.12.2=testCompileClasspath -org.junit.platform:junit-platform-commons:1.14.0=testRuntimeClasspath -org.junit.platform:junit-platform-engine:1.12.2=testCompileClasspath -org.junit.platform:junit-platform-engine:1.14.0=testRuntimeClasspath -org.junit:junit-bom:5.12.2=testCompileClasspath -org.junit:junit-bom:5.14.0=runtimeClasspath,spotbugs,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=annotationProcessor,spotbugs,testAnnotationProcessor,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 @@ -137,8 +124,8 @@ 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.2=jacocoAnt -org.ow2.asm:asm:9.8=pmd org.ow2.asm:asm:9.9=spotbugs +org.ow2.asm:asm:9.9.1=pmd 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,runtimeClasspath,testRuntimeClasspath @@ -148,7 +135,7 @@ org.slf4j:slf4j-api:2.0.17=spotbugs,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=checkstyle,pmd -org.xmlresolver:xmlresolver:5.3.3=spotbugs +org.xmlresolver:xmlresolver:5.2.2=checkstyle +org.xmlresolver:xmlresolver:5.3.3=pmd,spotbugs org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath empty=signatures,spotbugsPlugins diff --git a/settings.gradle b/settings.gradle index 7bc007d7..a9621997 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,7 +1,7 @@ pluginManagement { repositories { - mavenCentral() gradlePluginPortal() + mavenCentral() mavenLocal() maven { url "https://jitpack.io" } }