Run Additional Goals Before Commit
To run additional goals after release preparation (tag) but before committing with new -SNAPSHOT version, specify them using the preparationGoals
property.
- <project>
- [...]
- <build>
- [...]
- <plugins>
- [...]
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>3.1.1</version>
- <configuration>
- <preparationGoals>clean verify</preparationGoals>
- </configuration>
- </plugin>
- [...]
- </plugins>
- [...]
- </build>
- [...]
- </project>