Skip to content

Commit 32e2907

Browse files
committed
maven: update maven plugins
Update only plugins, no dependancies were touched. Some of the plugins stayed untouched due to targeting java 8.
1 parent cc4a718 commit 32e2907

File tree

1 file changed

+25
-24
lines changed

1 file changed

+25
-24
lines changed

pom.xml

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@
8787
<scassandra.version>1.1.2</scassandra.version>
8888
<logback.version>1.2.13</logback.version>
8989
<byteman.version>3.0.8</byteman.version>
90-
<burningwave.tools.version>0.26.2</burningwave.tools.version>
91-
<surefire.version>3.0.0-M6</surefire.version>
90+
<burningwave.tools.version>0.27.2</burningwave.tools.version>
91+
<surefire.version>3.5.3</surefire.version>
9292
<ipprefix>127.0.1.</ipprefix>
9393
<!-- defaults below are overridden by profiles and/or submodules -->
9494
<test.groups>unit</test.groups>
@@ -430,7 +430,7 @@
430430
<extension>
431431
<groupId>kr.motd.maven</groupId>
432432
<artifactId>os-maven-plugin</artifactId>
433-
<version>1.4.1.Final</version>
433+
<version>1.7.1</version>
434434
</extension>
435435

436436
</extensions>
@@ -445,34 +445,34 @@
445445

446446
<plugin>
447447
<artifactId>maven-clean-plugin</artifactId>
448-
<version>3.0.0</version>
448+
<version>3.5.0</version>
449449
</plugin>
450450

451451
<plugin>
452452
<artifactId>maven-resources-plugin</artifactId>
453-
<version>3.0.2</version>
453+
<version>3.3.1</version>
454454
</plugin>
455455

456456
<plugin>
457457
<artifactId>maven-site-plugin</artifactId>
458-
<version>3.6</version>
458+
<version>3.21.0</version>
459459
</plugin>
460460

461461
<plugin>
462462
<groupId>org.codehaus.mojo</groupId>
463463
<artifactId>build-helper-maven-plugin</artifactId>
464-
<!-- last version compatible with Java 6 -->
465-
<version>1.9.1</version>
464+
<!-- last version compatible with Java 8 -->
465+
<version>3.6.1</version>
466466
</plugin>
467467

468468
<plugin>
469469
<artifactId>maven-enforcer-plugin</artifactId>
470-
<version>1.4.1</version>
470+
<version>3.6.1</version>
471471
</plugin>
472472

473473
<plugin>
474474
<artifactId>maven-compiler-plugin</artifactId>
475-
<version>3.6.1</version>
475+
<version>3.14.0</version>
476476
<configuration>
477477
<source>${java.version}</source>
478478
<target>${java.version}</target>
@@ -522,7 +522,7 @@
522522

523523
<plugin>
524524
<artifactId>maven-source-plugin</artifactId>
525-
<version>3.0.1</version>
525+
<version>3.3.1</version>
526526
<executions>
527527
<execution>
528528
<id>attach-sources</id>
@@ -536,12 +536,14 @@
536536

537537
<plugin>
538538
<artifactId>maven-javadoc-plugin</artifactId>
539-
<version>2.10.4</version>
539+
<version>3.11.3</version>
540540
<inherited>true</inherited>
541541
<configuration>
542542
<quiet>true</quiet>
543543
<verbose>false</verbose>
544-
<additionalparam>${javadoc.opts}</additionalparam>
544+
<additionalJOptions>
545+
<additionalJOption>${javadoc.opts}</additionalJOption>
546+
</additionalJOptions>
545547
<detectJavaApiLink>true</detectJavaApiLink>
546548
<links>
547549
<link>https://javadoc.io/doc/javax/javaee-api/8.0/</link>
@@ -608,15 +610,15 @@
608610

609611
<plugin>
610612
<artifactId>maven-jar-plugin</artifactId>
611-
<version>3.0.2</version>
613+
<version>3.4.2</version>
612614
</plugin>
613615

614616
<plugin>
615617
<groupId>org.apache.felix</groupId>
616618
<artifactId>maven-bundle-plugin</artifactId>
617619
<extensions>true</extensions>
618-
<!-- last version compatible with Java 6 -->
619-
<version>2.5.4</version>
620+
<!-- last version compatible with Java 8 -->
621+
<version>5.1.9</version>
620622
<configuration>
621623
<instructions>
622624
<Bundle-Version>${project.version}</Bundle-Version>
@@ -632,12 +634,12 @@
632634

633635
<plugin>
634636
<artifactId>maven-shade-plugin</artifactId>
635-
<version>3.0.0</version>
637+
<version>3.6.0</version>
636638
</plugin>
637639

638640
<plugin>
639641
<artifactId>maven-release-plugin</artifactId>
640-
<version>2.5.3</version>
642+
<version>3.1.1</version>
641643
<configuration>
642644
<tagNameFormat>@{project.version}</tagNameFormat>
643645
<autoVersionSubmodules>true</autoVersionSubmodules>
@@ -652,24 +654,24 @@
652654
<dependency>
653655
<groupId>org.apache.maven.scm</groupId>
654656
<artifactId>maven-scm-provider-gitexe</artifactId>
655-
<version>1.9.5</version>
657+
<version>2.1.0</version>
656658
</dependency>
657659
</dependencies>
658660
</plugin>
659661

660662
<plugin>
661663
<artifactId>maven-assembly-plugin</artifactId>
662-
<version>3.0.0</version>
664+
<version>3.7.1</version>
663665
</plugin>
664666

665667
<plugin>
666668
<artifactId>maven-install-plugin</artifactId>
667-
<version>2.5.2</version>
669+
<version>3.1.4</version>
668670
</plugin>
669671

670672
<plugin>
671673
<artifactId>maven-deploy-plugin</artifactId>
672-
<version>2.8.2</version>
674+
<version>3.1.4</version>
673675
<executions>
674676
<execution>
675677
<id>default-deploy</id>
@@ -782,8 +784,7 @@
782784

783785
<plugin>
784786
<artifactId>maven-failsafe-plugin</artifactId>
785-
<!-- do not upgrade until https://issues.apache.org/jira/browse/SUREFIRE-1302 is fixed -->
786-
<version>2.18</version>
787+
<version>3.5.3</version>
787788
<configuration>
788789
<groups>${test.groups}</groups>
789790
<useFile>false</useFile>

0 commit comments

Comments
 (0)