Skip to content

Commit dc79aa0

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

24 files changed

Lines changed: 406 additions & 470 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.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: 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 "7.+" apply false
3-
id "com.github.mxenabled.vogue" version "4.+" apply false
2+
id "com.github.mxenabled.coppuccino" version "8.+" apply false
3+
id "com.github.mxenabled.vogue" version "5.+" apply false
44
id "idea"
5-
id "io.freefair.lombok" version "8.+" apply false
6-
id "io.github.gradle-nexus.publish-plugin" version "1.1.+"
5+
id "io.freefair.lombok" version "9.+" apply false
6+
id "io.github.gradle-nexus.publish-plugin" version "2.+"
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-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,9 @@ 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 "org.glassfish.jaxb:jaxb-runtime:[4.0.9,5.0.0)"
9089

9190
// --- Shared Testing Libraries ---
9291
api "io.opentracing:opentracing-mock:${project.ext.openTracingVersion}"
@@ -102,6 +101,7 @@ subprojects {
102101
testImplementation "org.mockito:mockito-core:${project.ext.mockitoVersion}"
103102
testImplementation "org.spockframework:spock-core:${project.ext.spockVersion}"
104103
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 = "8.14.3"
209+
gradleVersion = "9.5.1"
210210
distributionType = Wrapper.DistributionType.ALL
211211
}

common/gradle.lockfile

Lines changed: 30 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -3,35 +3,33 @@
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=compileClasspath,spotbugs,testCompileClasspath
7-
com.github.spotbugs:spotbugs-annotations:4.9.8=annotationProcessor,testAnnotationProcessor
6+
com.github.spotbugs:spotbugs-annotations:4.10.2=annotationProcessor,compileClasspath,spotbugs,testAnnotationProcessor,testCompileClasspath
87
com.github.spotbugs:spotbugs:4.10.2=spotbugs
98
com.github.stephenc.jcip:jcip-annotations:1.0-1=spotbugs
109
com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,runtimeClasspath,spotbugs,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath
1110
com.google.code.gson:gson:2.13.2=pmd
1211
com.google.code.gson:gson:2.14.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
13-
com.google.errorprone:error_prone_annotations:2.36.0=checkstyle
1412
com.google.errorprone:error_prone_annotations:2.41.0=pmd
13+
com.google.errorprone:error_prone_annotations:2.47.0=checkstyle
1514
com.google.errorprone:error_prone_annotations:2.48.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
1615
com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
1716
com.google.guava:failureaccess:1.0.3=checkstyle
18-
com.google.guava:guava:32.0.1-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
19-
com.google.guava:guava:33.4.8-jre=checkstyle
17+
com.google.guava:guava:32.1.3-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
18+
com.google.guava:guava:33.6.0-jre=checkstyle
2019
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
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
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
2423
commons-beanutils:commons-beanutils:1.11.0=checkstyle
25-
commons-codec:commons-codec:1.15=checkstyle
24+
commons-codec:commons-codec:1.11=checkstyle
2625
commons-collections:commons-collections:3.2.2=checkstyle
2726
commons-io:commons-io:2.21.0=spotbugs
2827
info.picocli:picocli:4.7.7=checkstyle
2928
io.leangen.geantyref:geantyref:1.3.16=testRuntimeClasspath
3029
jaxen:jaxen:2.0.6=spotbugs
3130
net.bytebuddy:byte-buddy-agent:1.17.7=testCompileClasspath,testRuntimeClasspath
3231
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
32+
net.sf.saxon:Saxon-HE:12.9=checkstyle,pmd,spotbugs
3533
net.sourceforge.pmd:pmd-ant:7.22.0=pmd
3634
net.sourceforge.pmd:pmd-core:7.22.0=pmd
3735
net.sourceforge.pmd:pmd-java:7.22.0=pmd
@@ -42,9 +40,8 @@ org.apache.commons:commons-lang3:3.18.0=checkstyle
4240
org.apache.commons:commons-lang3:3.20.0=compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
4341
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
4442
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
43+
org.apache.groovy:groovy-bom:4.0.29=testCompileClasspath,testRuntimeClasspath
44+
org.apache.groovy:groovy:4.0.29=testCompileClasspath,testRuntimeClasspath
4845
org.apache.httpcomponents:httpclient:4.5.13=checkstyle
4946
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
5047
org.apache.logging.log4j:log4j-api:2.26.0=spotbugs
@@ -55,50 +52,49 @@ org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle
5552
org.apache.maven.doxia:doxia-sink-api:1.12.0=checkstyle
5653
org.apache.xbean:xbean-reflect:3.7=checkstyle
5754
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
58-
org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
59-
org.checkerframework:checker-qual:3.49.3=checkstyle
55+
org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6056
org.checkerframework:checker-qual:3.53.1=pmd
61-
org.codehaus.groovy:groovy:3.0.24=testCompileClasspath,testRuntimeClasspath
6257
org.codehaus.plexus:plexus-classworlds:2.6.0=checkstyle
6358
org.codehaus.plexus:plexus-component-annotations:2.1.0=checkstyle
6459
org.codehaus.plexus:plexus-container-default:2.1.0=checkstyle
6560
org.codehaus.plexus:plexus-utils:3.3.0=checkstyle
6661
org.dom4j:dom4j:2.2.0=spotbugs
6762
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
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
7267
org.javassist:javassist:3.28.0-GA=checkstyle
7368
org.jspecify:jspecify:1.0.0=checkstyle
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
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
7975
org.mockito:mockito-core:5.23.0=testCompileClasspath,testRuntimeClasspath
8076
org.objenesis:objenesis:3.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
8177
org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath
8278
org.ow2.asm:asm-analysis:9.10.1=spotbugs
8379
org.ow2.asm:asm-commons:9.10.1=spotbugs
84-
org.ow2.asm:asm-commons:9.8=jacocoAnt
80+
org.ow2.asm:asm-commons:9.9=jacocoAnt
8581
org.ow2.asm:asm-tree:9.10.1=spotbugs
86-
org.ow2.asm:asm-tree:9.8=jacocoAnt
82+
org.ow2.asm:asm-tree:9.9=jacocoAnt
8783
org.ow2.asm:asm-util:9.10.1=spotbugs
8884
org.ow2.asm:asm:9.10.1=spotbugs
89-
org.ow2.asm:asm:9.8=jacocoAnt
85+
org.ow2.asm:asm:9.9=jacocoAnt
9086
org.ow2.asm:asm:9.9.1=pmd
9187
org.pcollections:pcollections:4.0.2=pmd
92-
org.projectlombok:lombok:1.18.42=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
88+
org.projectlombok:lombok:1.18.44=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
9389
org.reflections:reflections:0.10.2=checkstyle
9490
org.slf4j:jul-to-slf4j:1.7.36=pmd
9591
org.slf4j:slf4j-api:1.7.30=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
9692
org.slf4j:slf4j-api:2.0.17=spotbugsSlf4j
9793
org.slf4j:slf4j-api:2.0.18=spotbugs
9894
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
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
10399
org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
104100
empty=spotbugsPlugins

0 commit comments

Comments
 (0)