Skip to content

Commit

Permalink
[pom] Add back changes and changelog plugins as now maven 3 compatible
Browse files Browse the repository at this point in the history
maven team updated these, add them back now that they are supported again.
  • Loading branch information
hazendaz committed Feb 9, 2025
1 parent b36c0b9 commit 1238a2a
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,8 @@
<assembly.plugin>3.7.1</assembly.plugin>
<build-helper.plugin>3.6.0</build-helper.plugin>
<buildplan.plugin>2.2.2</buildplan.plugin>
<changelog.plugin>3.0.0-M1</changelog.plugin>
<changes.plugin>3.0.0-M2</changes.plugin>
<checkstyle.plugin>3.6.0</checkstyle.plugin>
<clean.plugin>3.4.0</clean.plugin>
<compiler.plugin>3.13.0</compiler.plugin>
Expand Down Expand Up @@ -605,6 +607,20 @@
<artifactId>maven-assembly-plugin</artifactId>
<version>${assembly.plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changelog-plugin</artifactId>
<version>${changelog.plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>${changes.plugin}</version>
<configuration>
<githubAPIScheme>https</githubAPIScheme>
<githubAPIPort>443</githubAPIPort>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
Expand Down Expand Up @@ -1360,6 +1376,21 @@

<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changelog-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>github-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
Expand Down

0 comments on commit 1238a2a

Please sign in to comment.