Skip to content

Commit c2e1bb4

Browse files
fix(deps): update all non-major dependencies
1 parent d501219 commit c2e1bb4

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

gbfs-validator-java-api/pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@
4040
<junit.version>6.0.0</junit.version>
4141
<mockito.version>5.11.0</mockito.version>
4242
<junit-platform.version>6.0.0</junit-platform.version>
43-
<openapi-generator-maven-plugin>6.0.0</openapi-generator-maven-plugin>
43+
<openapi-generator-maven-plugin>6.6.0</openapi-generator-maven-plugin>
4444
</properties>
4545

4646
<dependencyManagement>
4747
<dependencies>
4848
<dependency>
4949
<groupId>org.springframework.boot</groupId>
5050
<artifactId>spring-boot-dependencies</artifactId>
51-
<version>3.4.3</version>
51+
<version>3.5.6</version>
5252
<type>pom</type>
5353
<scope>import</scope>
5454
</dependency>
@@ -74,7 +74,7 @@
7474
<dependency>
7575
<groupId>io.swagger.core.v3</groupId>
7676
<artifactId>swagger-annotations</artifactId>
77-
<version>2.2.28</version>
77+
<version>2.2.38</version>
7878
</dependency>
7979

8080
<dependency>
@@ -100,7 +100,7 @@
100100
<dependency>
101101
<groupId>com.fasterxml.jackson.core</groupId>
102102
<artifactId>jackson-annotations</artifactId>
103-
<version>2.16.1</version>
103+
<version>2.20</version>
104104
</dependency>
105105

106106
<dependency>
@@ -113,13 +113,13 @@
113113
<dependency>
114114
<groupId>org.springdoc</groupId>
115115
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
116-
<version>2.6.0</version>
116+
<version>2.8.13</version>
117117
</dependency>
118118

119119
<dependency>
120120
<groupId>org.openapitools</groupId>
121121
<artifactId>jackson-databind-nullable</artifactId>
122-
<version>0.2.6</version>
122+
<version>0.2.7</version>
123123
</dependency>
124124

125125
<dependency>
@@ -189,15 +189,15 @@
189189
<dependency>
190190
<groupId>org.eclipse.jetty</groupId>
191191
<artifactId>jetty-servlet</artifactId>
192-
<version>9.4.53.v20231009</version>
192+
<version>9.4.58.v20250814</version>
193193
<scope>test</scope>
194194
</dependency>
195195

196196
<!-- Jetty util dependency required by Spring Boot Test -->
197197
<dependency>
198198
<groupId>org.eclipse.jetty</groupId>
199199
<artifactId>jetty-util</artifactId>
200-
<version>9.4.53.v20231009</version>
200+
<version>9.4.58.v20250814</version>
201201
<scope>test</scope>
202202
</dependency>
203203
</dependencies>
@@ -207,7 +207,7 @@
207207
<plugin>
208208
<groupId>org.springframework.boot</groupId>
209209
<artifactId>spring-boot-maven-plugin</artifactId>
210-
<version>3.4.3</version>
210+
<version>3.5.6</version>
211211
<executions>
212212
<execution>
213213
<goals>
@@ -221,7 +221,7 @@
221221
<plugin>
222222
<groupId>org.apache.maven.plugins</groupId>
223223
<artifactId>maven-compiler-plugin</artifactId>
224-
<version>3.13.0</version>
224+
<version>3.14.1</version>
225225
<configuration>
226226
<source>17</source>
227227
<target>17</target>
@@ -233,7 +233,7 @@
233233
<plugin>
234234
<groupId>org.apache.maven.plugins</groupId>
235235
<artifactId>maven-surefire-plugin</artifactId>
236-
<version>3.5.2</version>
236+
<version>3.5.4</version>
237237
<configuration>
238238
<includes>
239239
<include>**/*Test.java</include>

gbfs-validator-java-loader/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2121
<junit.version>6.0.0</junit.version>
2222
<wiremock.version>3.0.1</wiremock.version>
23-
<mockito.version>5.11.0</mockito.version>
23+
<mockito.version>5.20.0</mockito.version>
2424
</properties>
2525

2626
<dependencies>
@@ -32,12 +32,12 @@
3232
<dependency>
3333
<groupId>commons-io</groupId>
3434
<artifactId>commons-io</artifactId>
35-
<version>2.17.0</version>
35+
<version>2.20.0</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>org.apache.httpcomponents.client5</groupId>
3939
<artifactId>httpclient5</artifactId>
40-
<version>5.3.1</version>
40+
<version>5.5.1</version>
4141
</dependency>
4242

4343
<!-- Test dependencies -->

gbfs-validator-java/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<jacoco-maven-plugin.version>0.8.13</jacoco-maven-plugin.version>
5555
<maven-exec-plugin.version>1.6.0</maven-exec-plugin.version>
5656
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
57-
<maven-enforcer-plugin.version>3.6.1</maven-enforcer-plugin.version>
57+
<maven-enforcer-plugin.version>3.6.2</maven-enforcer-plugin.version>
5858
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
5959
<maven-javadoc-plugin.version>3.12.0</maven-javadoc-plugin.version>
6060
<maven-compiler-plugin.version>3.14.1</maven-compiler-plugin.version>
@@ -108,7 +108,7 @@
108108
<dependency>
109109
<groupId>org.mockito</groupId>
110110
<artifactId>mockito-core</artifactId>
111-
<version>5.12.0</version>
111+
<version>5.20.0</version>
112112
<scope>test</scope>
113113
</dependency>
114114
<dependency>
@@ -120,7 +120,7 @@
120120
<dependency>
121121
<groupId>org.mockito</groupId>
122122
<artifactId>mockito-junit-jupiter</artifactId>
123-
<version>5.12.0</version>
123+
<version>5.20.0</version>
124124
<scope>test</scope>
125125
</dependency>
126126
<dependency>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
</scm>
4646
<properties>
4747
<jreleaser-maven-plugin.version>1.20.0</jreleaser-maven-plugin.version>
48-
<sonar-maven-plugin.version>5.1.0.4751</sonar-maven-plugin.version>
48+
<sonar-maven-plugin.version>5.2.0.4988</sonar-maven-plugin.version>
4949
<prettier-java.version>2.1.0</prettier-java.version>
5050
<prettier-maven-plugin.version>0.22</prettier-maven-plugin.version>
5151
<plugin.prettier.goal>write</plugin.prettier.goal>

0 commit comments

Comments
 (0)