How To Install maven-changes-plugin on CentOS 7

In this tutorial we learn how to install maven-changes-plugin on CentOS 7. maven-changes-plugin is Plugin to support reporting of changes between releases

Introduction

In this tutorial we learn how to install maven-changes-plugin on CentOS 7.

What is maven-changes-plugin

This plugin is used to inform your users of the changes that have occurred between different releases of your project. The plugin can extract these changes, either from a changes.xml file or from the JIRA issue management system, and present them as a report. You also have the option of creating a release announcement and even sending this via email to your users.

We can use yum or dnf to install maven-changes-plugin on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install maven-changes-plugin.

Install maven-changes-plugin on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install maven-changes-plugin using yum by running the following command:

sudo yum -y install maven-changes-plugin

Install maven-changes-plugin on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install maven-changes-plugin using dnf by running the following command:

sudo dnf -y install maven-changes-plugin

How To Uninstall maven-changes-plugin on CentOS 7

To uninstall only the maven-changes-plugin package we can use the following command:

sudo dnf remove maven-changes-plugin

References

Summary

In this tutorial we learn how to install maven-changes-plugin on CentOS 7 using yum and dnf.