Skip to content

Commit 2d98785

Browse files
committed
revert: "feat!: bump to Gradle 9.5.1 and Spring Boot 4.1.0"
This reverts commit 94c2f59.
1 parent 94c2f59 commit 2d98785

23 files changed

Lines changed: 469 additions & 404 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "7.0.1"
2+
".": "7.0.0"
33
}

CHANGELOG.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,6 @@
55

66
* making Annotations.fieldsAnAnnotations respect inheritance ([3b266dd](https://github.com/mxenabled/path-core/commit/3b266ddcb227766a32f16e88e7b9b2022737de53))
77

8-
## [7.0.1](https://github.com/mxenabled/path-core/compare/v7.0.0...v7.0.1) (2026-06-01)
9-
10-
11-
### Bug Fixes
12-
13-
* trigger re-release after vogue hotfix ([3c0dc3f](https://github.com/mxenabled/path-core/commit/3c0dc3f913dbacb7e3477666e2d6e585dfe45696))
14-
158
## [7.0.0](https://github.com/mxenabled/path-core/compare/v6.0.4...v7.0.0) (2026-06-01)
169

1710

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ _Gradle_
2323
<!-- x-release-please-start-version -->
2424
```groovy
2525
dependencies {
26-
api platform("com.mx.path-core:platform:7.0.1")
26+
api platform("com.mx.path-core:platform:7.0.0")
2727
2828
implementation "com.mx.path-core:common"
2929
implementation "com.mx.path-core:context"
@@ -45,16 +45,16 @@ _Gradle_
4545
<!-- x-release-please-start-version -->
4646
```groovy
4747
dependencies {
48-
implementation "com.mx.path-core:common:7.0.1"
49-
implementation "com.mx.path-core:context:7.0.1"
50-
implementation "com.mx.path-core:gateway:7.0.1"
51-
implementation "com.mx.path-core:http:7.0.1"
52-
implementation "com.mx.path-core:messaging:7.0.1"
53-
implementation "com.mx.path-core:utilities:7.0.1"
48+
implementation "com.mx.path-core:common:7.0.0"
49+
implementation "com.mx.path-core:context:7.0.0"
50+
implementation "com.mx.path-core:gateway:7.0.0"
51+
implementation "com.mx.path-core:http:7.0.0"
52+
implementation "com.mx.path-core:messaging:7.0.0"
53+
implementation "com.mx.path-core:utilities:7.0.0"
5454
55-
annotationProcessor "com.mx.path-core:gateway-generator:7.0.1"
55+
annotationProcessor "com.mx.path-core:gateway-generator:7.0.0"
5656
57-
testImplementation "com.mx.path-core:testing:7.0.1"
57+
testImplementation "com.mx.path-core:testing:7.0.0"
5858
}
5959
```
6060
<!-- x-release-please-end -->

build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
plugins {
2-
id "com.github.mxenabled.coppuccino" version "8.+" apply false
3-
id "com.github.mxenabled.vogue" version "5.+" apply false
2+
id "com.github.mxenabled.coppuccino" version "7.+" apply false
3+
id "com.github.mxenabled.vogue" version "4.+" apply false
44
id "idea"
5-
id "io.freefair.lombok" version "9.+" apply false
6-
id "io.github.gradle-nexus.publish-plugin" version "2.+"
5+
id "io.freefair.lombok" version "8.+" apply false
6+
id "io.github.gradle-nexus.publish-plugin" version "1.1.+"
77
}
88

99
group "com.mx.path-core"
@@ -58,7 +58,7 @@ subprojects {
5858

5959
ext {
6060
mockitoVersion = "[5.0,6.0)"
61-
spockVersion = "2.4-groovy-4.0"
61+
spockVersion = "2.4-M6-groovy-3.0"
6262
junitVersion = "5.14.0"
6363
openTracingVersion = "[0.33,0.34)"
6464
slf4jVersion = "1.7.30"
@@ -83,9 +83,10 @@ subprojects {
8383
// Version changes to any of these need to be tested (not just built)
8484
// with an app that uses SOAP.
8585
// -----------------------------------------------------------------
86-
api "jakarta.xml.bind:jakarta.xml.bind-api:4.0.5!!"
86+
api "jakarta.xml.bind:jakarta.xml.bind-api:4.0.4!!"
8787
api "jakarta.xml.soap:jakarta.xml.soap-api:3.0.2!!"
88-
api "org.glassfish.jaxb:jaxb-runtime:[4.0.9,5.0.0)"
88+
api "com.sun.xml.bind:jaxb-impl:4.0.6!!"
89+
api "org.glassfish.jaxb:jaxb-runtime:4.0.6!!"
8990

9091
// --- Shared Testing Libraries ---
9192
api "io.opentracing:opentracing-mock:${project.ext.openTracingVersion}"
@@ -101,7 +102,6 @@ subprojects {
101102
testImplementation "org.mockito:mockito-core:${project.ext.mockitoVersion}"
102103
testImplementation "org.spockframework:spock-core:${project.ext.spockVersion}"
103104
testImplementation "org.junit.jupiter:junit-jupiter-api:${project.ext.junitVersion}"
104-
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
105105
}
106106

107107
compileJava { options.compilerArgs << "-parameters" }
@@ -206,6 +206,6 @@ tasks.named("dependencies") {
206206
}
207207

208208
wrapper {
209-
gradleVersion = "9.5.1"
209+
gradleVersion = "8.14.3"
210210
distributionType = Wrapper.DistributionType.ALL
211211
}

common/gradle.lockfile

Lines changed: 34 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -3,33 +3,35 @@
33
# This file is expected to be part of source control.
44
com.github.oowekyala.ooxml:nice-xml-messages:3.1=pmd
55
com.github.rholder:guava-retrying:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6-
com.github.spotbugs:spotbugs-annotations:4.10.2=annotationProcessor,compileClasspath,spotbugs,testAnnotationProcessor,testCompileClasspath
6+
com.github.spotbugs:spotbugs-annotations:4.10.2=compileClasspath,spotbugs,testCompileClasspath
7+
com.github.spotbugs:spotbugs-annotations:4.9.8=annotationProcessor,testAnnotationProcessor
78
com.github.spotbugs:spotbugs:4.10.2=spotbugs
89
com.github.stephenc.jcip:jcip-annotations:1.0-1=spotbugs
910
com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,runtimeClasspath,spotbugs,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath
1011
com.google.code.gson:gson:2.13.2=pmd
1112
com.google.code.gson:gson:2.14.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
13+
com.google.errorprone:error_prone_annotations:2.36.0=checkstyle
1214
com.google.errorprone:error_prone_annotations:2.41.0=pmd
13-
com.google.errorprone:error_prone_annotations:2.47.0=checkstyle
1415
com.google.errorprone:error_prone_annotations:2.48.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
1516
com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
1617
com.google.guava:failureaccess:1.0.3=checkstyle
17-
com.google.guava:guava:32.1.3-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
18-
com.google.guava:guava:33.6.0-jre=checkstyle
18+
com.google.guava:guava:32.0.1-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
19+
com.google.guava:guava:33.4.8-jre=checkstyle
1920
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
20-
com.google.j2objc:j2objc-annotations:2.8=compileClasspath,testCompileClasspath
21-
com.google.j2objc:j2objc-annotations:3.1=checkstyle
22-
com.puppycrawl.tools:checkstyle:13.7.0=checkstyle
21+
com.google.j2objc:j2objc-annotations:2.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
22+
com.google.j2objc:j2objc-annotations:3.0.0=checkstyle
23+
com.puppycrawl.tools:checkstyle:10.25.0=checkstyle
2324
commons-beanutils:commons-beanutils:1.11.0=checkstyle
24-
commons-codec:commons-codec:1.11=checkstyle
25+
commons-codec:commons-codec:1.15=checkstyle
2526
commons-collections:commons-collections:3.2.2=checkstyle
2627
commons-io:commons-io:2.21.0=spotbugs
2728
info.picocli:picocli:4.7.7=checkstyle
2829
io.leangen.geantyref:geantyref:1.3.16=testRuntimeClasspath
2930
jaxen:jaxen:2.0.6=spotbugs
3031
net.bytebuddy:byte-buddy-agent:1.17.7=testCompileClasspath,testRuntimeClasspath
3132
net.bytebuddy:byte-buddy:1.17.7=testCompileClasspath,testRuntimeClasspath
32-
net.sf.saxon:Saxon-HE:12.9=checkstyle,pmd,spotbugs
33+
net.sf.saxon:Saxon-HE:12.5=checkstyle
34+
net.sf.saxon:Saxon-HE:12.9=pmd,spotbugs
3335
net.sourceforge.pmd:pmd-ant:7.22.0=pmd
3436
net.sourceforge.pmd:pmd-core:7.22.0=pmd
3537
net.sourceforge.pmd:pmd-java:7.22.0=pmd
@@ -40,8 +42,9 @@ org.apache.commons:commons-lang3:3.18.0=checkstyle
4042
org.apache.commons:commons-lang3:3.20.0=compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
4143
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
4244
org.apache.commons:commons-text:1.3=checkstyle
43-
org.apache.groovy:groovy-bom:4.0.29=testCompileClasspath,testRuntimeClasspath
44-
org.apache.groovy:groovy:4.0.29=testCompileClasspath,testRuntimeClasspath
45+
org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle
46+
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle
47+
org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle
4548
org.apache.httpcomponents:httpclient:4.5.13=checkstyle
4649
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
4750
org.apache.logging.log4j:log4j-api:2.26.0=spotbugs
@@ -52,49 +55,50 @@ org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle
5255
org.apache.maven.doxia:doxia-sink-api:1.12.0=checkstyle
5356
org.apache.xbean:xbean-reflect:3.7=checkstyle
5457
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
55-
org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
58+
org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
59+
org.checkerframework:checker-qual:3.49.3=checkstyle
5660
org.checkerframework:checker-qual:3.53.1=pmd
61+
org.codehaus.groovy:groovy:3.0.24=testCompileClasspath,testRuntimeClasspath
5762
org.codehaus.plexus:plexus-classworlds:2.6.0=checkstyle
5863
org.codehaus.plexus:plexus-component-annotations:2.1.0=checkstyle
5964
org.codehaus.plexus:plexus-container-default:2.1.0=checkstyle
6065
org.codehaus.plexus:plexus-utils:3.3.0=checkstyle
6166
org.dom4j:dom4j:2.2.0=spotbugs
6267
org.hamcrest:hamcrest:3.0=testCompileClasspath,testRuntimeClasspath
63-
org.jacoco:org.jacoco.agent:0.8.14=jacocoAgent,jacocoAnt
64-
org.jacoco:org.jacoco.ant:0.8.14=jacocoAnt
65-
org.jacoco:org.jacoco.core:0.8.14=jacocoAnt
66-
org.jacoco:org.jacoco.report:0.8.14=jacocoAnt
68+
org.jacoco:org.jacoco.agent:0.8.13=jacocoAgent,jacocoAnt
69+
org.jacoco:org.jacoco.ant:0.8.13=jacocoAnt
70+
org.jacoco:org.jacoco.core:0.8.13=jacocoAnt
71+
org.jacoco:org.jacoco.report:0.8.13=jacocoAnt
6772
org.javassist:javassist:3.28.0-GA=checkstyle
6873
org.jspecify:jspecify:1.0.0=checkstyle
69-
org.junit.jupiter:junit-jupiter-api:5.14.1=testCompileClasspath,testRuntimeClasspath
70-
org.junit.platform:junit-platform-commons:1.14.1=testCompileClasspath,testRuntimeClasspath
71-
org.junit.platform:junit-platform-engine:1.14.1=testCompileClasspath,testRuntimeClasspath
72-
org.junit.platform:junit-platform-launcher:1.14.1=testRuntimeClasspath
73-
org.junit:junit-bom:5.14.1=testCompileClasspath,testRuntimeClasspath
74-
org.junit:junit-bom:6.1.0=annotationProcessor,spotbugs,testAnnotationProcessor
74+
org.junit.jupiter:junit-jupiter-api:5.14.0=testCompileClasspath,testRuntimeClasspath
75+
org.junit.platform:junit-platform-commons:1.14.0=testCompileClasspath,testRuntimeClasspath
76+
org.junit.platform:junit-platform-engine:1.14.0=testCompileClasspath,testRuntimeClasspath
77+
org.junit:junit-bom:5.14.0=annotationProcessor,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath
78+
org.junit:junit-bom:6.1.0=spotbugs
7579
org.mockito:mockito-core:5.23.0=testCompileClasspath,testRuntimeClasspath
7680
org.objenesis:objenesis:3.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7781
org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath
7882
org.ow2.asm:asm-analysis:9.10.1=spotbugs
7983
org.ow2.asm:asm-commons:9.10.1=spotbugs
80-
org.ow2.asm:asm-commons:9.9=jacocoAnt
84+
org.ow2.asm:asm-commons:9.8=jacocoAnt
8185
org.ow2.asm:asm-tree:9.10.1=spotbugs
82-
org.ow2.asm:asm-tree:9.9=jacocoAnt
86+
org.ow2.asm:asm-tree:9.8=jacocoAnt
8387
org.ow2.asm:asm-util:9.10.1=spotbugs
8488
org.ow2.asm:asm:9.10.1=spotbugs
85-
org.ow2.asm:asm:9.9=jacocoAnt
89+
org.ow2.asm:asm:9.8=jacocoAnt
8690
org.ow2.asm:asm:9.9.1=pmd
8791
org.pcollections:pcollections:4.0.2=pmd
88-
org.projectlombok:lombok:1.18.44=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
92+
org.projectlombok:lombok:1.18.42=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
8993
org.reflections:reflections:0.10.2=checkstyle
9094
org.slf4j:jul-to-slf4j:1.7.36=pmd
9195
org.slf4j:slf4j-api:1.7.30=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
9296
org.slf4j:slf4j-api:2.0.17=spotbugsSlf4j
9397
org.slf4j:slf4j-api:2.0.18=spotbugs
9498
org.slf4j:slf4j-simple:2.0.17=spotbugsSlf4j
95-
org.slf4j:slf4j-simple:2.0.18=checkstyle
96-
org.spockframework:spock-bom:2.4-groovy-4.0=testCompileClasspath,testRuntimeClasspath
97-
org.spockframework:spock-core:2.4-groovy-4.0=testCompileClasspath,testRuntimeClasspath
98-
org.xmlresolver:xmlresolver:5.3.3=checkstyle,pmd,spotbugs
99+
org.spockframework:spock-bom:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
100+
org.spockframework:spock-core:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
101+
org.xmlresolver:xmlresolver:5.2.2=checkstyle
102+
org.xmlresolver:xmlresolver:5.3.3=pmd,spotbugs
99103
org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
100104
empty=spotbugsPlugins

0 commit comments

Comments
 (0)