Skip to content

Commit c2ab0e0

Browse files
committed
Bumped provided/test/plugin dependencies
1 parent 589f6cc commit c2ab0e0

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

.github/workflows/ci-feign.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
java-version: [ '17' ]
17-
feign-version: [ '11.10', '12.5', '13.6' ]
17+
feign-version: [ '11.10', '12.5', '13.9.3' ]
1818
name: v${{ matrix.feign-version }}
1919
env:
2020
OKHTTP: 'com.squareup.okhttp3:okhttp,com.squareup.okhttp3:logging-interceptor'

.github/workflows/ci-spring-restclient.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
java-version: [ '17' ]
17-
spring-web-version: [ '6.2.0', '6.2.15', '7.0.3' ]
17+
spring-web-version: [ '6.2.0', '6.2.15', '7.0.5' ]
1818
name: spring-web v${{ matrix.spring-web-version }}
1919
env:
2020
OKHTTP: 'com.squareup.okhttp3:okhttp,com.squareup.okhttp3:logging-interceptor'

.github/workflows/ci-spring-webclient.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
java-version: [ '17' ]
17-
spring-webflux-version: [ '6.1.0', '6.1.21', '6.2.0', '6.2.15', '7.0.3' ]
17+
spring-webflux-version: [ '6.1.0', '6.1.21', '6.2.0', '6.2.15', '7.0.5' ]
1818
name: spring-webflux v${{ matrix.spring-webflux-version }}
1919
env:
2020
OKHTTP: 'com.squareup.okhttp3:okhttp,com.squareup.okhttp3:logging-interceptor'

library/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@
3838

3939

4040
<properties>
41-
<!-- Latest versions supported (as of January 2026) -->
41+
<!-- Latest versions supported (as of March 2026) -->
4242
<okhttp.version>5.3.2</okhttp.version>
4343
<httpclient.version>5.6</httpclient.version>
44-
<feign.version>13.6</feign.version>
45-
<spring-web.version>7.0.3</spring-web.version>
46-
<spring-webflux.version>7.0.3</spring-webflux.version>
44+
<feign.version>13.9.3</feign.version>
45+
<spring-web.version>7.0.5</spring-web.version>
46+
<spring-webflux.version>7.0.5</spring-webflux.version>
4747
</properties>
4848

4949
<dependencies>
@@ -96,7 +96,7 @@
9696
<!-- JSON provider, option #1 -->
9797
<groupId>tools.jackson.core</groupId>
9898
<artifactId>jackson-databind</artifactId>
99-
<version>3.0.3</version>
99+
<version>3.1.0</version>
100100
<scope>provided</scope>
101101
</dependency>
102102
<dependency>
@@ -195,7 +195,7 @@
195195
<plugin>
196196
<!-- Ensure compilation targets Java 17 regardless of runner JDK -->
197197
<artifactId>maven-compiler-plugin</artifactId>
198-
<version>3.14.1</version>
198+
<version>3.15.0</version>
199199
<configuration>
200200
<release>17</release>
201201
</configuration>
@@ -253,7 +253,7 @@
253253
<!-- Code style -->
254254
<groupId>com.diffplug.spotless</groupId>
255255
<artifactId>spotless-maven-plugin</artifactId>
256-
<version>3.1.0</version>
256+
<version>3.3.0</version>
257257
<configuration>
258258
<formats>
259259
<format>

test-clients/pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<packaging>jar</packaging>
1313

1414
<properties>
15-
<openapi-generator.version>7.19.0</openapi-generator.version>
15+
<openapi-generator.version>7.20.0</openapi-generator.version>
1616
<use-jakarta-ee>true</use-jakarta-ee>
1717
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
1818
<!-- OpenAPI Generator with "okhttp-gson" -->
@@ -21,7 +21,7 @@
2121
<okhttp-version>4.12.0</okhttp-version>
2222
<gson-version>2.10.1</gson-version>
2323
<commons-lang3-version>3.18.0</commons-lang3-version>
24-
<jackson-databind-nullable-version>0.2.8</jackson-databind-nullable-version>
24+
<jackson-databind-nullable-version>0.2.9</jackson-databind-nullable-version>
2525
<jakarta.ws.rs-api-version>2.1.6</jakarta.ws.rs-api-version>
2626

2727
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
@@ -38,8 +38,9 @@
3838
<!-- OpenAPI Generator with "restclient" -->
3939
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
4040
<spring-web-version>6.2.13</spring-web-version>
41-
<jackson-version>2.19.2</jackson-version>
42-
<jackson-databind-version>2.19.2</jackson-databind-version>
41+
<jackson-version>2.21.1</jackson-version>
42+
<jackson-annotations-version>2.21</jackson-annotations-version>
43+
<jackson-databind-version>2.21.1</jackson-databind-version>
4344
<jakarta-annotation-version>2.1.1</jakarta-annotation-version>
4445

4546
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
@@ -152,7 +153,7 @@
152153
<dependency>
153154
<groupId>com.fasterxml.jackson.core</groupId>
154155
<artifactId>jackson-annotations</artifactId>
155-
<version>${jackson-version}</version>
156+
<version>${jackson-annotations-version}</version>
156157
</dependency>
157158
<dependency>
158159
<groupId>com.fasterxml.jackson.core</groupId>

0 commit comments

Comments
 (0)