Skip to content

Commit befaad4

Browse files
update dependencies
1 parent 442bc9a commit befaad4

1 file changed

Lines changed: 23 additions & 12 deletions

File tree

pom.xml

Lines changed: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@
5656
<plugin>
5757
<groupId>org.apache.maven.plugins</groupId>
5858
<artifactId>maven-compiler-plugin</artifactId>
59-
<version>3.13.0</version>
59+
<version>3.15.0</version>
6060
</plugin>
6161
<plugin>
6262
<groupId>org.apache.maven.plugins</groupId>
6363
<artifactId>maven-jar-plugin</artifactId>
64-
<version>3.4.2</version>
64+
<version>3.5.0</version>
6565
<configuration>
6666
<archive>
6767
<manifest>
@@ -82,7 +82,7 @@
8282
<plugin>
8383
<groupId>org.apache.maven.plugins</groupId>
8484
<artifactId>maven-gpg-plugin</artifactId>
85-
<version>3.2.7</version>
85+
<version>3.2.8</version>
8686
<executions>
8787
<execution>
8888
<id>sign-artifacts</id>
@@ -96,7 +96,7 @@
9696
<plugin>
9797
<groupId>org.apache.maven.plugins</groupId>
9898
<artifactId>maven-source-plugin</artifactId>
99-
<version>3.3.1</version>
99+
<version>3.4.0</version>
100100
<executions>
101101
<execution>
102102
<id>attach-sources</id>
@@ -109,7 +109,7 @@
109109
<plugin>
110110
<groupId>org.apache.maven.plugins</groupId>
111111
<artifactId>maven-javadoc-plugin</artifactId>
112-
<version>3.11.2</version>
112+
<version>3.12.0</version>
113113
<executions>
114114
<execution>
115115
<id>attach-javadocs</id>
@@ -125,7 +125,7 @@
125125
<plugin>
126126
<groupId>org.apache.maven.plugins</groupId>
127127
<artifactId>maven-surefire-plugin</artifactId>
128-
<version>3.5.2</version>
128+
<version>3.5.5</version>
129129
<configuration>
130130
<includes>
131131
<include>**/*Test.java</include>
@@ -194,7 +194,7 @@
194194
<plugin>
195195
<groupId>org.apache.maven.plugins</groupId>
196196
<artifactId>maven-release-plugin</artifactId>
197-
<version>3.1.1</version>
197+
<version>3.3.1</version>
198198
<configuration>
199199
<scmCommentPrefix>[maven-release-plugin]</scmCommentPrefix>
200200
<tagNameFormat>v@{project.version}</tagNameFormat>
@@ -204,12 +204,12 @@
204204
<plugin>
205205
<groupId>org.codehaus.mojo</groupId>
206206
<artifactId>versions-maven-plugin</artifactId>
207-
<version>2.18.0</version>
207+
<version>2.21.0</version>
208208
</plugin>
209209
<plugin>
210210
<groupId>org.codehaus.mojo</groupId>
211211
<artifactId>exec-maven-plugin</artifactId>
212-
<version>3.5.0</version>
212+
<version>3.6.3</version>
213213
<executions>
214214
<!-- Smoke-test the shaded JAR after `mvn package`. Minimization can silently
215215
drop reflection-loaded classes; running the version flag exercises App.main,
@@ -259,7 +259,7 @@
259259
<dependency>
260260
<groupId>org.codehaus.mojo</groupId>
261261
<artifactId>extra-enforcer-rules</artifactId>
262-
<version>1.10.0</version>
262+
<version>1.12.0</version>
263263
</dependency>
264264
</dependencies>
265265
<executions>
@@ -295,6 +295,17 @@
295295
</plugin>
296296
</plugins>
297297
</build>
298+
<dependencyManagement>
299+
<dependencies>
300+
<dependency>
301+
<groupId>com.fasterxml.jackson</groupId>
302+
<artifactId>jackson-bom</artifactId>
303+
<version>2.21.3</version>
304+
<type>pom</type>
305+
<scope>import</scope>
306+
</dependency>
307+
</dependencies>
308+
</dependencyManagement>
298309
<dependencies>
299310
<dependency>
300311
<groupId>org.junit.jupiter</groupId>
@@ -360,7 +371,7 @@
360371
<dependency>
361372
<groupId>com.fasterxml.jackson.core</groupId>
362373
<artifactId>jackson-databind</artifactId>
363-
<version>2.18.2</version>
374+
<version>2.21.3</version>
364375
</dependency>
365376
<dependency>
366377
<groupId>org.slf4j</groupId>
@@ -381,7 +392,7 @@
381392
<dependency>
382393
<groupId>com.github.mwiede</groupId>
383394
<artifactId>jsch</artifactId>
384-
<version>2.27.9</version>
395+
<version>2.28.2</version>
385396
</dependency>
386397
</dependencies>
387398
</project>

0 commit comments

Comments
 (0)