Skip to content

Commit 208ed3f

Browse files
github-actions[bot]meotchwilliams
authored andcommitted
feat!: bump to Gradle 9.5.1 and Spring Boot 4
1 parent bba676e commit 208ed3f

21 files changed

Lines changed: 627 additions & 257 deletions

.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.0"
2+
".": "7.0.1"
33
}

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@
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+
815
## [7.0.0](https://github.com/mxenabled/path-core/compare/v6.0.4...v7.0.0) (2026-06-01)
916

1017

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.0")
26+
api platform("com.mx.path-core:platform:7.0.1")
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.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"
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"
5454
55-
annotationProcessor "com.mx.path-core:gateway-generator:7.0.0"
55+
annotationProcessor "com.mx.path-core:gateway-generator:7.0.1"
5656
57-
testImplementation "com.mx.path-core:testing:7.0.0"
57+
testImplementation "com.mx.path-core:testing:7.0.1"
5858
}
5959
```
6060
<!-- x-release-please-end -->

build.gradle

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

99
group "com.mx.path-core"
1010
description "MX Path Core"
11-
version "7.0.0" // x-release-please-version
11+
version "7.0.2-SNAPSHOT" // x-release-please-version
1212

1313
def platformProject = "platform"
1414
def publishedProjects = [
@@ -58,7 +58,7 @@ subprojects {
5858

5959
ext {
6060
mockitoVersion = "[5.0,6.0)"
61-
spockVersion = "2.4-M6-groovy-3.0"
61+
spockVersion = "2.4-groovy-4.0"
6262
junitVersion = "5.14.0"
6363
openTracingVersion = "[0.33,0.34)"
6464
slf4jVersion = "1.7.30"
@@ -83,10 +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.4!!"
86+
api "jakarta.xml.bind:jakarta.xml.bind-api:4.0.5!!"
8787
api "jakarta.xml.soap:jakarta.xml.soap-api:3.0.2!!"
88-
api "com.sun.xml.bind:jaxb-impl:4.0.6!!"
89-
api "org.glassfish.jaxb:jaxb-runtime:4.0.6!!"
88+
// api "com.sun.xml.bind:jaxb-impl:[4.0.9,5.0.0)"
89+
api "org.glassfish.jaxb:jaxb-runtime:[4.0.9,5.0.0)"
9090

9191
// --- Shared Testing Libraries ---
9292
api "io.opentracing:opentracing-mock:${project.ext.openTracingVersion}"
@@ -102,6 +102,7 @@ subprojects {
102102
testImplementation "org.mockito:mockito-core:${project.ext.mockitoVersion}"
103103
testImplementation "org.spockframework:spock-core:${project.ext.spockVersion}"
104104
testImplementation "org.junit.jupiter:junit-jupiter-api:${project.ext.junitVersion}"
105+
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
105106
}
106107

107108
compileJava { options.compilerArgs << "-parameters" }
@@ -206,6 +207,6 @@ tasks.named("dependencies") {
206207
}
207208

208209
wrapper {
209-
gradleVersion = "8.14.3"
210+
gradleVersion = "9.5.1"
210211
distributionType = Wrapper.DistributionType.ALL
211212
}

common/gradle.lockfile

Lines changed: 52 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ com.github.stephenc.jcip:jcip-annotations:1.0-1=spotbugs
1010
com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,runtimeClasspath,spotbugs,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath
1111
com.google.code.gson:gson:2.13.2=pmd
1212
com.google.code.gson:gson:2.14.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
13+
<<<<<<< HEAD
1314
com.google.errorprone:error_prone_annotations:2.36.0=checkstyle
1415
com.google.errorprone:error_prone_annotations:2.41.0=pmd
1516
com.google.errorprone:error_prone_annotations:2.48.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
@@ -21,17 +22,29 @@ com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=chec
2122
com.google.j2objc:j2objc-annotations:2.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2223
com.google.j2objc:j2objc-annotations:3.0.0=checkstyle
2324
com.puppycrawl.tools:checkstyle:10.25.0=checkstyle
25+
=======
26+
com.google.errorprone:error_prone_annotations:2.41.0=pmd
27+
com.google.errorprone:error_prone_annotations:2.47.0=checkstyle
28+
com.google.errorprone:error_prone_annotations:2.48.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
29+
com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
30+
com.google.guava:failureaccess:1.0.3=checkstyle
31+
com.google.guava:guava:32.1.3-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
32+
com.google.guava:guava:33.6.0-jre=checkstyle
33+
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
34+
com.google.j2objc:j2objc-annotations:2.8=compileClasspath,testCompileClasspath
35+
com.google.j2objc:j2objc-annotations:3.1=checkstyle
36+
com.puppycrawl.tools:checkstyle:13.6.0=checkstyle
37+
>>>>>>> fb7f218 (feat!: bump to gradle 9.5.1 and spring boot 4)
2438
commons-beanutils:commons-beanutils:1.11.0=checkstyle
25-
commons-codec:commons-codec:1.15=checkstyle
39+
commons-codec:commons-codec:1.11=checkstyle
2640
commons-collections:commons-collections:3.2.2=checkstyle
2741
commons-io:commons-io:2.21.0=spotbugs
2842
info.picocli:picocli:4.7.7=checkstyle
2943
io.leangen.geantyref:geantyref:1.3.16=testRuntimeClasspath
3044
jaxen:jaxen:2.0.6=spotbugs
3145
net.bytebuddy:byte-buddy-agent:1.17.7=testCompileClasspath,testRuntimeClasspath
3246
net.bytebuddy:byte-buddy:1.17.7=testCompileClasspath,testRuntimeClasspath
33-
net.sf.saxon:Saxon-HE:12.5=checkstyle
34-
net.sf.saxon:Saxon-HE:12.9=pmd,spotbugs
47+
net.sf.saxon:Saxon-HE:12.9=checkstyle,pmd,spotbugs
3548
net.sourceforge.pmd:pmd-ant:7.22.0=pmd
3649
net.sourceforge.pmd:pmd-core:7.22.0=pmd
3750
net.sourceforge.pmd:pmd-java:7.22.0=pmd
@@ -42,9 +55,8 @@ org.apache.commons:commons-lang3:3.18.0=checkstyle
4255
org.apache.commons:commons-lang3:3.20.0=compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
4356
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
4457
org.apache.commons:commons-text:1.3=checkstyle
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
58+
org.apache.groovy:groovy-bom:4.0.29=testCompileClasspath,testRuntimeClasspath
59+
org.apache.groovy:groovy:4.0.29=testCompileClasspath,testRuntimeClasspath
4860
org.apache.httpcomponents:httpclient:4.5.13=checkstyle
4961
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
5062
org.apache.logging.log4j:log4j-api:2.26.0=spotbugs
@@ -55,38 +67,63 @@ org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle
5567
org.apache.maven.doxia:doxia-sink-api:1.12.0=checkstyle
5668
org.apache.xbean:xbean-reflect:3.7=checkstyle
5769
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
70+
<<<<<<< HEAD
5871
org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
5972
org.checkerframework:checker-qual:3.49.3=checkstyle
73+
=======
74+
org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
75+
>>>>>>> fb7f218 (feat!: bump to gradle 9.5.1 and spring boot 4)
6076
org.checkerframework:checker-qual:3.53.1=pmd
61-
org.codehaus.groovy:groovy:3.0.24=testCompileClasspath,testRuntimeClasspath
6277
org.codehaus.plexus:plexus-classworlds:2.6.0=checkstyle
6378
org.codehaus.plexus:plexus-component-annotations:2.1.0=checkstyle
6479
org.codehaus.plexus:plexus-container-default:2.1.0=checkstyle
6580
org.codehaus.plexus:plexus-utils:3.3.0=checkstyle
6681
org.dom4j:dom4j:2.2.0=spotbugs
6782
org.hamcrest:hamcrest:3.0=testCompileClasspath,testRuntimeClasspath
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
83+
org.jacoco:org.jacoco.agent:0.8.14=jacocoAgent,jacocoAnt
84+
org.jacoco:org.jacoco.ant:0.8.14=jacocoAnt
85+
org.jacoco:org.jacoco.core:0.8.14=jacocoAnt
86+
org.jacoco:org.jacoco.report:0.8.14=jacocoAnt
7287
org.javassist:javassist:3.28.0-GA=checkstyle
7388
org.jspecify:jspecify:1.0.0=checkstyle
89+
<<<<<<< HEAD
7490
org.junit.jupiter:junit-jupiter-api:5.14.0=testCompileClasspath,testRuntimeClasspath
7591
org.junit.platform:junit-platform-commons:1.14.0=testCompileClasspath,testRuntimeClasspath
7692
org.junit.platform:junit-platform-engine:1.14.0=testCompileClasspath,testRuntimeClasspath
93+
<<<<<<< HEAD
94+
=======
95+
org.junit.platform:junit-platform-launcher:1.14.0=testRuntimeClasspath
96+
>>>>>>> fb7f218 (feat!: bump to gradle 9.5.1 and spring boot 4)
7797
org.junit:junit-bom:5.14.0=annotationProcessor,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath
98+
=======
99+
org.junit.jupiter:junit-jupiter-api:5.14.1=testCompileClasspath,testRuntimeClasspath
100+
org.junit.platform:junit-platform-commons:1.14.1=testCompileClasspath,testRuntimeClasspath
101+
org.junit.platform:junit-platform-engine:1.14.1=testCompileClasspath,testRuntimeClasspath
102+
org.junit.platform:junit-platform-launcher:1.14.1=testRuntimeClasspath
103+
org.junit:junit-bom:5.14.0=annotationProcessor,testAnnotationProcessor
104+
org.junit:junit-bom:5.14.1=testCompileClasspath,testRuntimeClasspath
105+
>>>>>>> b4c17b6 (feat!: bump to Gradle 9.5.1 and Spring Boot 4)
78106
org.junit:junit-bom:6.1.0=spotbugs
79107
org.mockito:mockito-core:5.23.0=testCompileClasspath,testRuntimeClasspath
80108
org.objenesis:objenesis:3.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
81109
org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath
82110
org.ow2.asm:asm-analysis:9.10.1=spotbugs
83111
org.ow2.asm:asm-commons:9.10.1=spotbugs
112+
<<<<<<< HEAD
84113
org.ow2.asm:asm-commons:9.8=jacocoAnt
85114
org.ow2.asm:asm-tree:9.10.1=spotbugs
86115
org.ow2.asm:asm-tree:9.8=jacocoAnt
87116
org.ow2.asm:asm-util:9.10.1=spotbugs
88117
org.ow2.asm:asm:9.10.1=spotbugs
89118
org.ow2.asm:asm:9.8=jacocoAnt
119+
=======
120+
org.ow2.asm:asm-commons:9.9=jacocoAnt
121+
org.ow2.asm:asm-tree:9.10.1=spotbugs
122+
org.ow2.asm:asm-tree:9.9=jacocoAnt
123+
org.ow2.asm:asm-util:9.10.1=spotbugs
124+
org.ow2.asm:asm:9.10.1=spotbugs
125+
org.ow2.asm:asm:9.9=jacocoAnt
126+
>>>>>>> fb7f218 (feat!: bump to gradle 9.5.1 and spring boot 4)
90127
org.ow2.asm:asm:9.9.1=pmd
91128
org.pcollections:pcollections:4.0.2=pmd
92129
org.projectlombok:lombok:1.18.42=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
@@ -96,9 +133,9 @@ org.slf4j:slf4j-api:1.7.30=compileClasspath,runtimeClasspath,testCompileClasspat
96133
org.slf4j:slf4j-api:2.0.17=spotbugsSlf4j
97134
org.slf4j:slf4j-api:2.0.18=spotbugs
98135
org.slf4j:slf4j-simple:2.0.17=spotbugsSlf4j
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
136+
org.slf4j:slf4j-simple:2.0.18=checkstyle
137+
org.spockframework:spock-bom:2.4-groovy-4.0=testCompileClasspath,testRuntimeClasspath
138+
org.spockframework:spock-core:2.4-groovy-4.0=testCompileClasspath,testRuntimeClasspath
139+
org.xmlresolver:xmlresolver:5.3.3=checkstyle,pmd,spotbugs
103140
org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
104141
empty=spotbugsPlugins

0 commit comments

Comments
 (0)