Date created: 2024-09-28
Typical usage of maven release plugin
-
Running
./mvnw release:preparewill create two commits - one with the new release version, and one with the next development iteration version. These, together with a new git tag will be pushed to the remote repository. -
Running
./mvnw release:performwill package the new version to the package repository defined in the project POM.- Additional arguments can be passed to the
release:performgoal, for example as-Darguments="-Dmaven.javadoc.skip=true".
- Additional arguments can be passed to the
