How To Install plexus-velocity on CentOS 7

In this tutorial we learn how to install plexus-velocity on CentOS 7. plexus-velocity is Plexus Velocity Component

Introduction

In this tutorial we learn how to install plexus-velocity on CentOS 7.

What is plexus-velocity

The Plexus project seeks to create end-to-end developer tools for writing applications. At the core is the container, which can be embedded or for a full scale application server. There are many reusable components for hibernate, form processing, jndi, i18n, velocity, etc. Plexus also includes an application server which is like a J2EE application server, without all the baggage.

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

Install plexus-velocity on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install plexus-velocity using yum by running the following command:

sudo yum -y install plexus-velocity

Install plexus-velocity 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 plexus-velocity using dnf by running the following command:

sudo dnf -y install plexus-velocity

How To Uninstall plexus-velocity on CentOS 7

To uninstall only the plexus-velocity package we can use the following command:

sudo dnf remove plexus-velocity

References

Summary

In this tutorial we learn how to install plexus-velocity on CentOS 7 using yum and dnf.