Skip to content

Commit

Permalink
update build plugins
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj committed May 5, 2023
1 parent 4d06743 commit dd1efec
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<copyright.update>false</copyright.update>
<spotbugs.skip>true</spotbugs.skip>
<spotbugs.threshold>High</spotbugs.threshold>
<spotbugs.plugin.version>4.7.3.0</spotbugs.plugin.version>
<spotbugs.plugin.version>4.7.3.4</spotbugs.plugin.version>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<angus-mail.javadoc.source>11</angus-mail.javadoc.source>
Expand Down Expand Up @@ -236,17 +236,17 @@ Copyright &#169; 2019, ${current.year} Eclipse Foundation. All rights reserved.]
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<version>3.11.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M8</version>
<version>3.0.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -261,12 +261,12 @@ Copyright &#169; 2019, ${current.year} Eclipse Foundation. All rights reserved.]
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.4.2</version>
<version>3.5.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.3.0</version>
<version>3.5.0</version>
</plugin>
<plugin>
<!--
Expand All @@ -285,12 +285,12 @@ Copyright &#169; 2019, ${current.year} Eclipse Foundation. All rights reserved.]
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.1.0</version>
<version>3.3.0</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.6</version>
<version>5.1.8</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -300,7 +300,7 @@ Copyright &#169; 2019, ${current.year} Eclipse Foundation. All rights reserved.]
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.1</version>
<version>3.5.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -310,7 +310,7 @@ Copyright &#169; 2019, ${current.year} Eclipse Foundation. All rights reserved.]
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.4.2</version>
<version>3.4.3</version>
</plugin>
<plugin>
<groupId>org.glassfish.copyright</groupId>
Expand Down Expand Up @@ -464,19 +464,20 @@ Copyright &#169; 2019, ${current.year} Eclipse Foundation. All rights reserved.]
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<createMissingPackageInfoClass>false</createMissingPackageInfoClass>
</configuration>
<executions>
<execution>
<id>default-compile</id>
<configuration>
<createMissingPackageInfoClass>false</createMissingPackageInfoClass>
<skipMain>${skip9}</skipMain>
<release>9</release>
<excludes>
<!-- This is for some demos -->
<exclude>example/app/internal/**</exclude>
</excludes>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<!--
Configure compiler plugin to print lint warnings.
Need to exclude options warning because bootstrap
Expand Down Expand Up @@ -721,7 +722,7 @@ Copyright &#169; 2019, ${current.year} Eclipse Foundation. All rights reserved.]
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.8</version>
<version>0.8.10</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down

0 comments on commit dd1efec

Please sign in to comment.