How To Install maven-release.noarch on Amazon Linux 2
In this tutorial we learn how to install maven-release.noarch in Amazon Linux 2. maven-release.noarch is Release a project updating the POM and tagging in the SCM
Introduction
In this tutorial we learn how to install maven-release.noarch on Amazon Linux 2.
What is maven-release.noarch
This plugin is used to release a project with Maven, saving a lot of repetitive, manual work. Releasing a project is made in two steps
We can use yum to install maven-release.noarch on Amazon Linux 2. In this tutorial we discuss both methods but you only need to choose one of method to install maven-release.noarch.
Install maven-release.noarch on Amazon Linux 2 Using yum
Update yum database with yum using the following command.
sudo yum makecache --refresh
After updating yum database, We can install maven-release.noarch using yum by running the following command:
sudo yum -y install maven-release.noarch
How To Uninstall maven-release.noarch on Amazon Linux 2
To uninstall only the maven-release.noarch package we can use the following command:
sudo yum remove maven-release.noarch
maven-release.noarch Package Contents on Amazon Linux 2
/usr/share/doc/maven-release-2.2.1
/usr/share/doc/maven-release-2.2.1/LICENSE
/usr/share/doc/maven-release-2.2.1/NOTICE
/usr/share/doc/maven-release-2.2.1/README
/usr/share/maven-fragments/maven-release-maven-release.xml
/usr/share/maven-poms/JPP.maven-release-maven-release.pom
References
Summary
In this tutorial we learn how to install maven-release.noarch on Amazon Linux 2 using yum.