Skip to content

Commit

Permalink
Upgrading maven-javadoc-plugin, maven-surefire-plugin, maven-failsafe…
Browse files Browse the repository at this point in the history
…-plugin and maven-javadoc-plugin
  • Loading branch information
ilgrosso committed Nov 4, 2024
1 parent 2aab0bf commit cd9e8d3
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1460,6 +1460,17 @@ under the License.
<enabled>true</enabled>
</releases>
</repository>
<!-- Excluding useless transitive repositories -->
<repository>
<id>couchbase</id>
<url>https://files.couchbase.com/maven2/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>

<pluginRepositories>
Expand Down Expand Up @@ -1546,7 +1557,7 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.10.1</version>
<version>3.11.1</version>
<configuration>
<release>${targetJdk}</release>
<additionalOptions>
Expand Down Expand Up @@ -1711,7 +1722,7 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.1</version>
<version>3.5.2</version>
<configuration>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<encoding>utf-8</encoding>
Expand All @@ -1721,7 +1732,7 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.5.1</version>
<version>3.5.2</version>
<configuration>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<runOrder>alphabetical</runOrder>
Expand Down Expand Up @@ -2069,7 +2080,7 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.10.1</version>
<version>3.11.1</version>
<configuration>
<release>${targetJdk}</release>
<destDir>apidocs/3.0</destDir>
Expand Down

0 comments on commit cd9e8d3

Please sign in to comment.