Skip to content

Commit 1092326

Browse files
committed
Update Maven plugins
1 parent 68727ed commit 1092326

File tree

7 files changed

+30
-75
lines changed

7 files changed

+30
-75
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
target
2+
.fleet
23
.idea
34
httpclient*.jar
45
*.iml

japicmp-maven-plugin/pom.xml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,6 @@
2424
</license>
2525
</licenses>
2626

27-
<properties>
28-
<mavenVersion>3.8.1</mavenVersion> <!-- maven.version property is reserved! -->
29-
<resolver.version>1.4.1</resolver.version> <!-- keep in sync with maven version -->
30-
<maven-plugin.version>3.6.4</maven-plugin.version>
31-
</properties>
32-
3327
<prerequisites>
3428
<maven>${maven-api.version}</maven>
3529
</prerequisites>
@@ -103,7 +97,6 @@
10397
<build>
10498
<plugins>
10599
<plugin>
106-
<groupId>org.apache.maven.plugins</groupId>
107100
<artifactId>maven-plugin-plugin</artifactId>
108101
<version>${plugin-annotation.version}</version>
109102
<executions>
@@ -172,8 +165,8 @@
172165
<artifactId>maven-checkstyle-plugin</artifactId>
173166
</plugin>
174167
<plugin>
175-
<groupId>org.apache.maven.plugins</groupId>
176168
<artifactId>maven-plugin-plugin</artifactId>
169+
<version>${plugin-annotation.version}</version>
177170
<reportSets>
178171
<reportSet>
179172
<reports>

japicmp-testbase/japicmp-test-maven-plugin/pom.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -684,9 +684,7 @@
684684
<!-- run site plugin to build reports during 'pre-integration-test' phase
685685
this allows integrations tests to verify site report generation -->
686686
<plugin>
687-
<groupId>org.apache.maven.plugins</groupId>
688687
<artifactId>maven-site-plugin</artifactId>
689-
<version>3.7</version>
690688
<executions>
691689
<execution>
692690
<id>build-site-to-test</id>
@@ -701,7 +699,6 @@
701699
</executions>
702700
</plugin>
703701
<plugin>
704-
<groupId>org.apache.maven.plugins</groupId>
705702
<artifactId>maven-failsafe-plugin</artifactId>
706703
<executions>
707704
<execution>

japicmp-testbase/japicmp-test-vx-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<plugin>
7878
<groupId>org.codehaus.mojo</groupId>
7979
<artifactId>exec-maven-plugin</artifactId>
80-
<version>3.1.0</version>
80+
<version>3.2.0</version>
8181
<executions>
8282
<execution>
8383
<id>withOldVersion</id>

japicmp-testbase/japicmp-test/pom.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@
122122
<build>
123123
<plugins>
124124
<plugin>
125-
<groupId>org.apache.maven.plugins</groupId>
126125
<artifactId>maven-surefire-plugin</artifactId>
127126
<configuration>
128127
<argLine>
@@ -132,7 +131,6 @@
132131
</configuration>
133132
</plugin>
134133
<plugin>
135-
<groupId>org.apache.maven.plugins</groupId>
136134
<artifactId>maven-failsafe-plugin</artifactId>
137135
<configuration>
138136
<argLine>
@@ -142,7 +140,6 @@
142140
</configuration>
143141
</plugin>
144142
<plugin>
145-
<groupId>org.apache.maven.plugins</groupId>
146143
<artifactId>maven-javadoc-plugin</artifactId>
147144
<configuration>
148145
<additionalJOption>

japicmp/pom.xml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@
8080
<plugin>
8181
<groupId>org.jacoco</groupId>
8282
<artifactId>jacoco-maven-plugin</artifactId>
83-
<version>0.8.8</version>
8483
<executions>
8584
<execution>
8685
<id>default-prepare-agent</id>
@@ -105,7 +104,6 @@
105104
</executions>
106105
</plugin>
107106
<plugin>
108-
<groupId>org.apache.maven.plugins</groupId>
109107
<artifactId>maven-surefire-plugin</artifactId>
110108
<configuration>
111109
<argLine>
@@ -138,13 +136,6 @@
138136
<parameter>
139137
<oldVersionPattern>\d+\.\d+\.\d+</oldVersionPattern>
140138
<onlyModified>true</onlyModified>
141-
<excludes>
142-
<exclude>japicmp.*#__cobertura*()</exclude>
143-
<exclude>
144-
japicmp.*#__cobertura*(net.sourceforge.cobertura.coveragedata.LightClassmapListener)
145-
</exclude>
146-
<exclude>japicmp.*#__cobertura*</exclude>
147-
</excludes>
148139
</parameter>
149140
<skip>false</skip>
150141
</configuration>
@@ -179,7 +170,6 @@
179170
<build>
180171
<plugins>
181172
<plugin>
182-
<groupId>org.apache.maven.plugins</groupId>
183173
<artifactId>maven-surefire-plugin</artifactId>
184174
<configuration>
185175
<forkCount>3</forkCount>
@@ -198,7 +188,6 @@
198188
<build>
199189
<plugins>
200190
<plugin>
201-
<groupId>org.apache.maven.plugins</groupId>
202191
<artifactId>maven-surefire-plugin</artifactId>
203192
<configuration>
204193
<argLine>

pom.xml

Lines changed: 27 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@
143143
<maven-api.version>3.6.3</maven-api.version>
144144
<resolver.version>1.4.1</resolver.version> <!-- keep in sync with maven api version -->
145145
<reporting.version>3.1.0</reporting.version>
146-
<plugin-annotation.version>3.6.4</plugin-annotation.version>
147-
<surefireVersion>3.0.0-M7</surefireVersion>
146+
<plugin-annotation.version>3.7.1</plugin-annotation.version>
147+
<surefireVersion>3.2.5</surefireVersion>
148148
<javassist.version>3.30.2-GA</javassist.version>
149149
<guava.version>33.0.0-jre</guava.version>
150150
<jaxb.version>2.3.2</jaxb.version>
@@ -158,14 +158,14 @@
158158
<module>japicmp-ant-task</module>
159159
</modules>
160160

161-
<dependencies>
162-
<dependency>
163-
<groupId>junit</groupId>
164-
<artifactId>junit</artifactId>
165-
<version>4.13.1</version>
166-
<scope>test</scope>
167-
</dependency>
168-
<dependency>
161+
<dependencies>
162+
<dependency>
163+
<groupId>junit</groupId>
164+
<artifactId>junit</artifactId>
165+
<version>4.13.1</version>
166+
<scope>test</scope>
167+
</dependency>
168+
<dependency>
169169
<groupId>org.mockito</groupId>
170170
<artifactId>mockito-core</artifactId>
171171
<version>4.3.1</version>
@@ -222,7 +222,7 @@
222222
</plugin>
223223
<plugin>
224224
<artifactId>maven-enforcer-plugin</artifactId>
225-
<version>3.2.1</version>
225+
<version>3.4.1</version>
226226
<executions>
227227
<execution>
228228
<id>enforce-versions</id>
@@ -247,14 +247,12 @@
247247
<pluginManagement>
248248
<plugins>
249249
<plugin>
250-
<groupId>org.apache.maven.plugins</groupId>
251250
<artifactId>maven-compiler-plugin</artifactId>
252-
<version>3.10.1</version>
251+
<version>3.13.0</version>
253252
</plugin>
254253
<plugin>
255-
<groupId>org.apache.maven.plugins</groupId>
256254
<artifactId>maven-release-plugin</artifactId>
257-
<version>3.0.0-M6</version>
255+
<version>3.0.1</version>
258256
<configuration>
259257
<autoVersionSubmodules>true</autoVersionSubmodules>
260258
<useReleaseProfile>false</useReleaseProfile>
@@ -265,9 +263,8 @@
265263
</configuration>
266264
</plugin>
267265
<plugin>
268-
<groupId>org.apache.maven.plugins</groupId>
269266
<artifactId>maven-javadoc-plugin</artifactId>
270-
<version>3.4.1</version>
267+
<version>3.6.3</version>
271268
<configuration>
272269
<quiet>true</quiet>
273270
</configuration>
@@ -281,9 +278,8 @@
281278
</executions>
282279
</plugin>
283280
<plugin>
284-
<groupId>org.apache.maven.plugins</groupId>
285281
<artifactId>maven-source-plugin</artifactId>
286-
<version>3.2.1</version>
282+
<version>3.3.1</version>
287283
<executions>
288284
<execution>
289285
<id>attach-sources</id>
@@ -295,9 +291,8 @@
295291
</plugin>
296292
<plugin>
297293
<!-- explicitly define maven-deploy-plugin after other to force exec order -->
298-
<groupId>org.apache.maven.plugins</groupId>
299294
<artifactId>maven-deploy-plugin</artifactId>
300-
<version>3.0.0</version>
295+
<version>3.1.1</version>
301296
<executions>
302297
<execution>
303298
<id>deploy</id>
@@ -309,69 +304,59 @@
309304
</executions>
310305
</plugin>
311306
<plugin>
312-
<groupId>org.apache.maven.plugins</groupId>
313307
<artifactId>maven-surefire-plugin</artifactId>
314308
<version>${surefireVersion}</version>
315309
</plugin>
316310
<plugin>
317-
<groupId>org.apache.maven.plugins</groupId>
318311
<artifactId>maven-failsafe-plugin</artifactId>
319312
<version>${surefireVersion}</version>
320313
</plugin>
321314
<plugin>
322-
<groupId>org.apache.maven.plugins</groupId>
323315
<artifactId>maven-assembly-plugin</artifactId>
324-
<version>3.4.2</version>
316+
<version>3.7.1</version>
325317
</plugin>
326318
<plugin>
327-
<groupId>org.apache.maven.plugins</groupId>
328319
<artifactId>maven-jar-plugin</artifactId>
329-
<version>3.3.0</version>
320+
<version>3.4.1</version>
330321
</plugin>
331322
<plugin>
332-
<groupId>org.apache.maven.plugins</groupId>
333323
<artifactId>maven-war-plugin</artifactId>
334-
<version>3.3.2</version>
324+
<version>3.4.0</version>
335325
</plugin>
336326
<plugin>
337-
<groupId>org.apache.maven.plugins</groupId>
338327
<artifactId>maven-site-plugin</artifactId>
339328
<version>3.12.0</version>
340329
</plugin>
341330
<plugin>
342-
<groupId>org.apache.maven.plugins</groupId>
343331
<artifactId>maven-gpg-plugin</artifactId>
344-
<version>3.0.1</version>
332+
<version>3.2.4</version>
345333
</plugin>
346334
<plugin>
347335
<groupId>org.apache.felix</groupId>
348336
<artifactId>maven-bundle-plugin</artifactId>
349-
<version>5.1.8</version>
337+
<version>5.1.9</version>
350338
</plugin>
351339
<plugin>
352-
<groupId>org.apache.maven.plugins</groupId>
353340
<artifactId>maven-dependency-plugin</artifactId>
354-
<version>3.3.0</version>
341+
<version>3.6.1</version>
355342
</plugin>
356343
<plugin>
357-
<groupId>org.apache.maven.plugins</groupId>
358344
<artifactId>maven-checkstyle-plugin</artifactId>
359-
<version>3.2.0</version>
345+
<version>3.3.1</version>
360346
</plugin>
361347
<plugin>
362348
<groupId>com.github.spotbugs</groupId>
363349
<artifactId>spotbugs-maven-plugin</artifactId>
364-
<version>4.7.2.0</version>
350+
<version>4.8.4.0</version>
365351
</plugin>
366352
<plugin>
367-
<groupId>org.apache.maven.plugins</groupId>
368353
<artifactId>maven-project-info-reports-plugin</artifactId>
369-
<version>3.4.1</version>
354+
<version>3.5.0</version>
370355
</plugin>
371356
<plugin>
372357
<groupId>org.jacoco</groupId>
373358
<artifactId>jacoco-maven-plugin</artifactId>
374-
<version>0.8.8</version>
359+
<version>0.8.12</version>
375360
<executions>
376361
<execution>
377362
<id>default-prepare-agent</id>
@@ -398,7 +383,7 @@
398383
<plugin>
399384
<groupId>org.apache.maven.plugins</groupId>
400385
<artifactId>maven-scm-publish-plugin</artifactId>
401-
<version>3.0.0</version>
386+
<version>3.2.1</version>
402387
<configuration>
403388
<scmBranch>gh-pages</scmBranch>
404389
</configuration>
@@ -440,7 +425,6 @@
440425
<build>
441426
<plugins>
442427
<plugin>
443-
<groupId>org.apache.maven.plugins</groupId>
444428
<artifactId>maven-javadoc-plugin</artifactId>
445429
<configuration>
446430
<source>8</source>
@@ -457,7 +441,6 @@
457441
<build>
458442
<plugins>
459443
<plugin>
460-
<groupId>org.apache.maven.plugins</groupId>
461444
<artifactId>maven-surefire-plugin</artifactId>
462445
<configuration>
463446
<argLine>
@@ -466,7 +449,6 @@
466449
</configuration>
467450
</plugin>
468451
<plugin>
469-
<groupId>org.apache.maven.plugins</groupId>
470452
<artifactId>maven-failsafe-plugin</artifactId>
471453
<configuration>
472454
<argLine>
@@ -475,7 +457,6 @@
475457
</configuration>
476458
</plugin>
477459
<plugin>
478-
<groupId>org.apache.maven.plugins</groupId>
479460
<artifactId>maven-javadoc-plugin</artifactId>
480461
<configuration>
481462
<additionalJOption>
@@ -490,7 +471,6 @@
490471
<build>
491472
<plugins>
492473
<plugin>
493-
<groupId>org.apache.maven.plugins</groupId>
494474
<artifactId>maven-source-plugin</artifactId>
495475
<executions>
496476
<execution>
@@ -502,7 +482,6 @@
502482
</executions>
503483
</plugin>
504484
<plugin>
505-
<groupId>org.apache.maven.plugins</groupId>
506485
<artifactId>maven-javadoc-plugin</artifactId>
507486
<executions>
508487
<execution>
@@ -514,7 +493,6 @@
514493
</executions>
515494
</plugin>
516495
<plugin>
517-
<groupId>org.apache.maven.plugins</groupId>
518496
<artifactId>maven-gpg-plugin</artifactId>
519497
<executions>
520498
<execution>

0 commit comments

Comments
 (0)