Set up the mvn-release alias
masterFor a streamlined release process, add the following alias to your shell's .rc file (e.g., .bashrc or .zshrc). This command performs a clean build, verifies the project, cleans the release environment, prepares the release, and performs the release.
alias mvn-release='mvn clean source:jar javadoc:jar verify && mvn clean release:clean && mvn release:prepare release:perform'