Skip to content

Commit e17c5ec

Browse files
committed
Update dependencies and Maven plugin versions
1 parent 6f9d70e commit e17c5ec

File tree

1 file changed

+33
-20
lines changed

1 file changed

+33
-20
lines changed

pom.xml

+33-20
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,6 @@
99
<description>Simple API that allows you to easily parse logs and other files</description>
1010
<url>http://maven.apache.org</url>
1111

12-
<parent>
13-
<groupId>org.sonatype.oss</groupId>
14-
<artifactId>oss-parent</artifactId>
15-
<version>7</version>
16-
</parent>
17-
1812
<licenses>
1913
<license>
2014
<name>Apache License, Version 2.0</name>
@@ -48,10 +42,10 @@
4842
</distributionManagement>
4943

5044
<properties>
51-
<junit.version>4.12</junit.version>
52-
<assertj.version>3.9.1</assertj.version>
53-
<common.version>3.7</common.version>
54-
<guava.version>24.0-jre</guava.version>
45+
<junit.version>4.13.2</junit.version>
46+
<assertj.version>3.26.0</assertj.version>
47+
<common.version>3.14.0</common.version>
48+
<guava.version>33.2.0-jre</guava.version>
5549
<named.regex.version>0.2.3</named.regex.version>
5650
<!-- maven -->
5751
<java.version>1.8</java.version>
@@ -88,7 +82,7 @@
8882
<dependency>
8983
<groupId>org.slf4j</groupId>
9084
<artifactId>slf4j-api</artifactId>
91-
<version>1.7.21</version>
85+
<version>2.0.13</version>
9286
<scope>compile</scope>
9387
</dependency>
9488
<dependency>
@@ -113,7 +107,7 @@
113107

114108
<plugin>
115109
<artifactId>maven-javadoc-plugin</artifactId>
116-
<version>2.9.1</version>
110+
<version>3.6.3</version>
117111
<configuration><!-- Default configuration for all reports -->
118112
</configuration>
119113
<executions>
@@ -131,7 +125,7 @@
131125

132126
<plugin>
133127
<artifactId>maven-scm-plugin</artifactId>
134-
<version>1.8.1</version>
128+
<version>2.1.0</version>
135129
<configuration>
136130
<connectionType>developerConnection</connectionType>
137131
<scmVersion>branch-0.1</scmVersion>
@@ -140,52 +134,71 @@
140134
</plugin>
141135

142136
<plugin>
137+
<groupId>org.apache.maven.plugins</groupId>
143138
<artifactId>maven-enforcer-plugin</artifactId>
144-
<version>1.3.1</version>
145139
<executions>
146140
<execution>
147141
<id>enforce</id>
148142
<configuration>
149143
<rules>
150144
<DependencyConvergence />
145+
<requireMavenVersion>
146+
<version>3.9.6</version>
147+
</requireMavenVersion>
151148
</rules>
152149
<failFast>true</failFast>
153150
</configuration>
154151
<goals>
155152
<goal>enforce</goal>
156153
</goals>
154+
<phase>validate</phase>
157155
</execution>
158156
</executions>
159157
</plugin>
160158
</plugins>
161159

162160
<pluginManagement>
163161
<plugins>
162+
<plugin>
163+
<groupId>org.apache.maven.plugins</groupId>
164+
<artifactId>maven-enforcer-plugin</artifactId>
165+
<version>3.4.1</version>
166+
</plugin>
167+
<plugin>
168+
<groupId>org.codehaus.mojo</groupId>
169+
<artifactId>versions-maven-plugin</artifactId>
170+
<version>2.16.2</version>
171+
</plugin>
172+
<plugin>
173+
<groupId>org.apache.maven.plugins</groupId>
174+
<artifactId>maven-compiler-plugin</artifactId>
175+
<version>3.13.0</version>
176+
</plugin>
164177
<plugin>
165178
<artifactId>maven-dependency-plugin</artifactId>
166-
<version>2.8</version>
179+
<version>3.6.1</version>
167180
</plugin>
168181
<plugin>
169182
<artifactId>maven-surefire-plugin</artifactId>
170-
<version>2.16</version>
183+
<version>3.2.5</version>
171184
<configuration combine.children="append">
172185
<argLine>-Xmx2g -Xms1g</argLine>
173186
</configuration>
174187
</plugin>
175188
<plugin>
176189
<artifactId>maven-assembly-plugin</artifactId>
177-
<version>2.4</version>
190+
<version>3.7.1</version>
178191
</plugin>
179192
<plugin>
180193
<groupId>org.codehaus.mojo</groupId>
181194
<artifactId>exec-maven-plugin</artifactId>
182-
<version>1.2.1</version>
195+
<version>3.3.0</version>
183196
</plugin>
184197

185198
<plugin>
186199
<groupId>org.apache.maven.plugins</groupId>
187200
<artifactId>maven-clean-plugin</artifactId>
188-
<version>2.4.1</version>
201+
<version>3.3.2</version>
189202
<configuration>
190203
<filesets>
191204
<fileset>
@@ -260,7 +273,7 @@
260273
<plugins>
261274
<plugin>
262275
<artifactId>maven-gpg-plugin</artifactId>
263-
<version>1.4</version>
276+
<version>3.2.4</version>
264277
<executions>
265278
<execution>
266279
<id>sign-artifacts</id>

0 commit comments

Comments
 (0)