Skip to content
This repository was archived by the owner on Sep 13, 2024. It is now read-only.

Commit 2899390

Browse files
committed
Update Maven plugins and deps (p-u)
Generally updates the build to use latest Maven plugins, aligned with 3.6.3 requirement (for build).
1 parent edcb462 commit 2899390

File tree

2 files changed

+21
-20
lines changed

2 files changed

+21
-20
lines changed

org.eclipse.sisu.plexus/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
<dependency>
8181
<groupId>org.codehaus.plexus</groupId>
8282
<artifactId>plexus-utils</artifactId>
83-
<version>4.0.0</version>
83+
<version>4.0.1</version>
8484
</dependency>
8585
<dependency>
8686
<groupId>org.codehaus.plexus</groupId>

pom.xml

+20-19
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@
117117
<properties>
118118
<maven.compiler.release>8</maven.compiler.release>
119119
<!-- Set to same version as release target for consistency -->
120-
<maven.compiler.source>1.${maven.compiler.release}</maven.compiler.source>
121-
<maven.compiler.target>1.${maven.compiler.release}</maven.compiler.target>
120+
<maven.compiler.source>${maven.compiler.release}</maven.compiler.source>
121+
<maven.compiler.target>${maven.compiler.release}</maven.compiler.target>
122122
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
123123

124124
<mavenBuildVersion>3.6.3</mavenBuildVersion>
@@ -131,7 +131,7 @@
131131
<plugin>
132132
<groupId>org.apache.maven.plugins</groupId>
133133
<artifactId>maven-enforcer-plugin</artifactId>
134-
<version>3.2.1</version>
134+
<version>3.4.1</version>
135135
<configuration>
136136
<rules>
137137
<enforceBytecodeVersion>
@@ -170,7 +170,7 @@
170170
<plugin>
171171
<groupId>org.apache.maven.plugins</groupId>
172172
<artifactId>maven-clean-plugin</artifactId>
173-
<version>3.2.0</version>
173+
<version>3.3.2</version>
174174
</plugin>
175175
<plugin>
176176
<groupId>org.apache.maven.plugins</groupId>
@@ -180,37 +180,38 @@
180180
<plugin>
181181
<groupId>org.apache.maven.plugins</groupId>
182182
<artifactId>maven-compiler-plugin</artifactId>
183-
<version>3.11.0</version>
183+
<version>3.13.0</version>
184184
<configuration>
185185
<proc>none</proc>
186+
<showDeprecation>true</showDeprecation>
186187
</configuration>
187188
</plugin>
188189
<plugin>
189190
<groupId>org.apache.maven.plugins</groupId>
190191
<artifactId>maven-dependency-plugin</artifactId>
191-
<version>3.5.0</version>
192+
<version>3.6.1</version>
192193
</plugin>
193194
<plugin>
194195
<groupId>org.apache.maven.plugins</groupId>
195196
<artifactId>maven-surefire-plugin</artifactId>
196-
<version>3.0.0</version>
197+
<version>3.2.5</version>
197198
<dependencies>
198199
<dependency>
199200
<groupId>org.apache.maven.surefire</groupId>
200201
<artifactId>surefire-junit47</artifactId>
201-
<version>3.0.0</version>
202+
<version>3.2.5</version>
202203
</dependency>
203204
</dependencies>
204205
</plugin>
205206
<plugin>
206207
<groupId>org.apache.maven.plugins</groupId>
207208
<artifactId>maven-failsafe-plugin</artifactId>
208-
<version>3.0.0</version>
209+
<version>3.2.5</version>
209210
<dependencies>
210211
<dependency>
211212
<groupId>org.apache.maven.surefire</groupId>
212213
<artifactId>surefire-junit47</artifactId>
213-
<version>3.0.0</version>
214+
<version>3.2.5</version>
214215
</dependency>
215216
</dependencies>
216217
</plugin>
@@ -238,7 +239,7 @@ Bundle-DocURL: http://www.eclipse.org/sisu/
238239
<plugin>
239240
<groupId>org.apache.maven.plugins</groupId>
240241
<artifactId>maven-jar-plugin</artifactId>
241-
<version>3.3.0</version>
242+
<version>3.4.1</version>
242243
<executions>
243244
<execution>
244245
<id>default-jar</id>
@@ -253,22 +254,22 @@ Bundle-DocURL: http://www.eclipse.org/sisu/
253254
<plugin>
254255
<groupId>org.apache.maven.plugins</groupId>
255256
<artifactId>maven-install-plugin</artifactId>
256-
<version>3.1.1</version>
257+
<version>3.1.2</version>
257258
</plugin>
258259
<plugin>
259260
<groupId>org.apache.maven.plugins</groupId>
260261
<artifactId>maven-deploy-plugin</artifactId>
261-
<version>3.1.1</version>
262+
<version>3.1.2</version>
262263
</plugin>
263264
<plugin>
264265
<groupId>org.jacoco</groupId>
265266
<artifactId>jacoco-maven-plugin</artifactId>
266-
<version>0.8.8</version>
267+
<version>0.8.12</version>
267268
</plugin>
268269
<plugin>
269270
<groupId>org.apache.maven.plugins</groupId>
270271
<artifactId>maven-release-plugin</artifactId>
271-
<version>3.0.0</version>
272+
<version>3.0.1</version>
272273
<configuration>
273274
<mavenExecutorId>forked-path</mavenExecutorId>
274275
<useReleaseProfile>false</useReleaseProfile>
@@ -288,7 +289,7 @@ Bundle-DocURL: http://www.eclipse.org/sisu/
288289
<plugin>
289290
<groupId>org.apache.maven.plugins</groupId>
290291
<artifactId>maven-source-plugin</artifactId>
291-
<version>3.2.1</version>
292+
<version>3.3.1</version>
292293
<executions>
293294
<execution>
294295
<id>attach-sources</id>
@@ -301,7 +302,7 @@ Bundle-DocURL: http://www.eclipse.org/sisu/
301302
<plugin>
302303
<groupId>org.apache.maven.plugins</groupId>
303304
<artifactId>maven-javadoc-plugin</artifactId>
304-
<version>3.5.0</version>
305+
<version>3.6.3</version>
305306
<configuration>
306307
<overview>${basedir}/overview.html</overview>
307308
<excludePackageNames>*.internal</excludePackageNames>
@@ -321,7 +322,7 @@ Bundle-DocURL: http://www.eclipse.org/sisu/
321322
<plugin>
322323
<groupId>org.apache.maven.plugins</groupId>
323324
<artifactId>maven-gpg-plugin</artifactId>
324-
<version>3.0.1</version>
325+
<version>3.2.4</version>
325326
<configuration>
326327
<passphrase>${gpg.passphrase}</passphrase>
327328
<useAgent>true</useAgent>
@@ -349,7 +350,7 @@ Bundle-DocURL: http://www.eclipse.org/sisu/
349350
<plugin>
350351
<groupId>org.apache.maven.plugins</groupId>
351352
<artifactId>maven-project-info-reports-plugin</artifactId>
352-
<version>3.4.2</version>
353+
<version>3.5.0</version>
353354
</plugin>
354355
<plugin>
355356
<groupId>com.diffplug.spotless</groupId>

0 commit comments

Comments
 (0)