A maven plugin to list all properties on RELEASE or LATEST
This plugin only has one goal
- mvn release-properties:parse will read all properties of the pom file and make available to the project:
- propertiesOnRelease - a comma separated value of all properties on RELEASE
- propertiesOnLatest - a comma separated value of all properties on LATEST
- propertiesOnReleaseAndLatest - a comma separated value of all properties on RELEASE and on LATEST
This plugin's main usage is combining with the versions:update-properties mojo:
mvn release-properties:parse versions:update-properties -DincludeProperties='${propertiesOnRelease}'