Skip to content

Commit

Permalink
Fix Maven 3.9.2 warnings (#640)
Browse files Browse the repository at this point in the history
* Apply Maven workarounds to dependencies to remove warnings
* Set maven-resources-plugin version to 3.3.1

Fixes  #634
  • Loading branch information
abelsromero committed May 28, 2023
1 parent 976bc68 commit 9ab5378
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ Build / Infrastructure::

* Add Maven matrix testing + define Maven compatibility policy (#632)
* Bump Asciidoctorj to v2.5.8 and jRuby to v9.3.10.0 (#639)
* Add maven-site-pluing v3.10.0 integration test (#641)
* Add maven-site-plugin v3.10.0 integration test (#641)
* Fix warning messages reported since Maven 3.9.2 (#634)

== v2.2.3 (2023-03-18)

Expand Down
25 changes: 25 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,25 @@
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven.project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${maven.project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
<version>${maven.project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-settings</artifactId>
<version>${maven.project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
Expand Down Expand Up @@ -150,6 +164,12 @@
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-core</artifactId>
<version>${doxia.version}</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-container-default</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down Expand Up @@ -252,6 +272,11 @@

<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
Expand Down
1 change: 1 addition & 0 deletions src/it/spi-registered-log/log-handler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.5.4</version>
<scope>provided</scope>
</dependency>
</dependencies>

Expand Down

0 comments on commit 9ab5378

Please sign in to comment.