Skip to content

Commit

Permalink
Use latest maven-plugin-tools
Browse files Browse the repository at this point in the history
Maven Plugin Tools is a set of tools (plugin, dependencies)
to generate metadata required for the Maven plugin.
As such, we can run the latest and use Dependabot to automate
the management without issues.
We still have CI tests to validate backward compatibility
  • Loading branch information
abelsromero committed Jan 1, 2024
1 parent 190fc4f commit e832581
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ updates:
ignore:
- dependency-name: org.jruby:jruby
- dependency-name: org.apache.maven:*
- dependency-name: org.apache.maven.plugin-tools:*
- dependency-name: org.apache.maven.doxia:*
- dependency-name: org.codehaus.plexus:*
- dependency-name: commons-io:commons-io
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ Build / Infrastructure::
* Improvements to dependency management (#690)
* Test Javadoc generation in CI (#690)
* Fix maven-deploy-plugin and prerequisites Maven warnings (#709)
* Use latest maven-plugin-tools and remove Dependabot exclusion (CI test ensure backward compatibility) (#717)

Maintenance::
* Replace use of reflection by direct JavaExtensionRegistry calls to register extensions (#596)
Expand Down
6 changes: 3 additions & 3 deletions asciidoctor-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</prerequisites>

<properties>
<maven.plugin.plugin.version>3.8.1</maven.plugin.plugin.version>
<maven-plugin-tools.version>3.10.2</maven-plugin-tools.version>
<netty.version>4.1.104.Final</netty.version>
</properties>

Expand Down Expand Up @@ -51,7 +51,7 @@
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${maven.plugin.plugin.version}</version>
<version>${maven-plugin-tools.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -90,7 +90,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>${maven.plugin.plugin.version}</version>
<version>${maven-plugin-tools.version}</version>
<configuration>
<goalPrefix>asciidoctor</goalPrefix>
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
Expand Down

0 comments on commit e832581

Please sign in to comment.