Skip to content

Commit 4589019

Browse files
fix dependencies
1 parent db36003 commit 4589019

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

pom.xml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<plugin>
5757
<groupId>org.apache.maven.plugins</groupId>
5858
<artifactId>maven-jar-plugin</artifactId>
59-
<version>3.2.0</version>
59+
<version>3.4.2</version>
6060
<configuration>
6161
<archive>
6262
<manifest>
@@ -68,7 +68,7 @@
6868
<plugin>
6969
<groupId>org.sonatype.central</groupId>
7070
<artifactId>central-publishing-maven-plugin</artifactId>
71-
<version>0.8.0</version>
71+
<version>0.9.0</version>
7272
<extensions>true</extensions>
7373
<configuration>
7474
<publishingServerId>central</publishingServerId>
@@ -77,7 +77,7 @@
7777
<plugin>
7878
<groupId>org.apache.maven.plugins</groupId>
7979
<artifactId>maven-gpg-plugin</artifactId>
80-
<version>3.0.1</version>
80+
<version>3.2.7</version>
8181
<executions>
8282
<execution>
8383
<id>sign-artifacts</id>
@@ -91,7 +91,7 @@
9191
<plugin>
9292
<groupId>org.apache.maven.plugins</groupId>
9393
<artifactId>maven-source-plugin</artifactId>
94-
<version>3.2.1</version>
94+
<version>3.3.1</version>
9595
<executions>
9696
<execution>
9797
<id>attach-sources</id>
@@ -104,7 +104,7 @@
104104
<plugin>
105105
<groupId>org.apache.maven.plugins</groupId>
106106
<artifactId>maven-javadoc-plugin</artifactId>
107-
<version>3.2.0</version>
107+
<version>3.11.2</version>
108108
<executions>
109109
<execution>
110110
<id>attach-javadocs</id>
@@ -120,7 +120,7 @@
120120
<plugin>
121121
<groupId>org.apache.maven.plugins</groupId>
122122
<artifactId>maven-surefire-plugin</artifactId>
123-
<version>3.0.0-M9</version>
123+
<version>3.5.2</version>
124124
<configuration>
125125
<includes>
126126
<include>**/*Test.java</include>
@@ -183,7 +183,7 @@
183183
<plugin>
184184
<groupId>org.apache.maven.plugins</groupId>
185185
<artifactId>maven-release-plugin</artifactId>
186-
<version>3.0.1</version>
186+
<version>3.1.1</version>
187187
<configuration>
188188
<scmCommentPrefix>[maven-release-plugin]</scmCommentPrefix>
189189
<tagNameFormat>v@{project.version}</tagNameFormat>
@@ -193,45 +193,45 @@
193193
<plugin>
194194
<groupId>org.codehaus.mojo</groupId>
195195
<artifactId>versions-maven-plugin</artifactId>
196-
<version>2.16.2</version>
196+
<version>2.18.0</version>
197197
</plugin>
198198
</plugins>
199199
</build>
200200
<dependencies>
201201
<dependency>
202202
<groupId>org.junit.jupiter</groupId>
203203
<artifactId>junit-jupiter</artifactId>
204-
<version>5.9.2</version>
204+
<version>5.11.4</version>
205205
<scope>test</scope>
206206
</dependency>
207207
<dependency>
208208
<groupId>org.mockito</groupId>
209209
<artifactId>mockito-core</artifactId>
210-
<version>5.1.1</version>
210+
<version>5.14.2</version>
211211
<scope>test</scope>
212212
</dependency>
213213
<dependency>
214214
<groupId>org.mockito</groupId>
215215
<artifactId>mockito-junit-jupiter</artifactId>
216-
<version>5.1.1</version>
216+
<version>5.14.2</version>
217217
<scope>test</scope>
218218
</dependency>
219219
<dependency>
220220
<groupId>org.mockito</groupId>
221221
<artifactId>mockito-inline</artifactId>
222-
<version>5.1.1</version>
222+
<version>5.2.0</version>
223223
<scope>test</scope>
224224
</dependency>
225225
<dependency>
226226
<groupId>org.assertj</groupId>
227227
<artifactId>assertj-core</artifactId>
228-
<version>3.24.2</version>
228+
<version>3.27.3</version>
229229
<scope>test</scope>
230230
</dependency>
231231
<dependency>
232232
<groupId>org.wiremock</groupId>
233233
<artifactId>wiremock</artifactId>
234-
<version>3.3.1</version>
234+
<version>3.10.0</version>
235235
<scope>test</scope>
236236
</dependency>
237237
<dependency>
@@ -268,7 +268,7 @@
268268
<dependency>
269269
<groupId>commons-cli</groupId>
270270
<artifactId>commons-cli</artifactId>
271-
<version>1.4</version>
271+
<version>1.9.0</version>
272272
</dependency>
273273
<dependency>
274274
<groupId>net.sf.json-lib</groupId>
@@ -284,18 +284,18 @@
284284
<dependency>
285285
<groupId>ch.qos.logback</groupId>
286286
<artifactId>logback-classic</artifactId>
287-
<version>1.2.13</version>
287+
<version>1.5.16</version>
288288
</dependency>
289289

290290
<dependency>
291291
<groupId>ch.qos.logback</groupId>
292292
<artifactId>logback-core</artifactId>
293-
<version>1.2.13</version>
293+
<version>1.5.16</version>
294294
</dependency>
295295
<dependency>
296296
<groupId>com.github.mwiede</groupId>
297297
<artifactId>jsch</artifactId>
298-
<version>2.27.2</version>
298+
<version>2.27.3</version>
299299
</dependency>
300300
</dependencies>
301301
</project>

0 commit comments

Comments
 (0)