Skip to content

Commit

Permalink
tell the versions-update-plugin to ignore alpha and M versions
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSnoozer committed Mar 12, 2024
1 parent 78e192a commit f257625
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -189,16 +189,27 @@
<plugins>
<!-- Override oss parent downgrades -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<arguments>-Pgpg</arguments>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.16.2</version>
<configuration>
<!-- https://www.mojohaus.org/versions/versions-maven-plugin/examples/display-dependency-updates.html -->
<ignoredVersions>.*-M.*,.*-alpha.*</ignoredVersions>
</configuration>
</plugin>

<!-- if you would like to run the git-commit-id-maven-plugin for your build, you could also include it here instead using a profile (see README.md) -->
<!-- Setting built-in java compiler properties -->
Expand Down

0 comments on commit f257625

Please sign in to comment.