Skip to content

Commit

Permalink
OWB-1433 more plugin updates
Browse files Browse the repository at this point in the history
  • Loading branch information
struberg committed Nov 8, 2023
1 parent 7fbe82d commit 26f9799
Showing 1 changed file with 13 additions and 31 deletions.
44 changes: 13 additions & 31 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
<jetty.version>9.4.12.v20180830</jetty.version>

<surefire.version>3.2.2</surefire.version>
<maven-javadoc.version>3.1.1</maven-javadoc.version>
</properties>

<mailingLists>
Expand Down Expand Up @@ -403,7 +404,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.0</version>
<version>3.2.1</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -606,7 +607,7 @@
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<version>0.11</version>
<version>0.13</version>
<configuration>
<includes>
<include>src/**/*</include>
Expand All @@ -631,7 +632,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.1.0</version>
<version>3.4.1</version>
<executions>
<execution>
<id>enforce-java-version</id>
Expand All @@ -652,7 +653,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<version>${maven-javadoc.version}</version>
<configuration>
<quiet>true</quiet>
<additionalparam>-Xdoclint:none</additionalparam>
Expand All @@ -674,7 +675,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.9</version>
<reportSets>
<reportSet>
<reports>
Expand All @@ -692,7 +692,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<version>${maven-javadoc.version}</version>
<configuration>
<quiet>true</quiet>
<additionalparam>-Xdoclint:none</additionalparam>
Expand Down Expand Up @@ -948,7 +948,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.5</version>
<version>3.0.0</version>
<configuration>
<inputEncoding>
${project.build.sourceEncoding}
Expand All @@ -961,21 +961,21 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.6</version>
<version>3.21.2</version>
<configuration>
<targetJdk>1.5</targetJdk>
<targetJdk>11</targetJdk>
<!--
<rulesets>
<ruleset>
http://svn.codehaus.org/mojo/trunk/mojo/mojo-parent/src/main/config/pmd/mojo_rules.xml
</ruleset>
</rulesets>
-->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>
maven-project-info-reports-plugin
</artifactId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.9</version>
<reportSets>
<reportSet>
Expand All @@ -999,7 +999,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.19.1</version>
<version>3.0.0-M4</version>
<reportSets>
<reportSet>
<reports>
Expand All @@ -1008,24 +1008,6 @@
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.3</version>
<configuration>
<threshold>Low</threshold>
</configuration>
</plugin>

</plugins>
</reporting>
Expand Down

0 comments on commit 26f9799

Please sign in to comment.