How To Install xmvn-tools on Fedora 36
Introduction
In this tutorial we learn how to install xmvn-tools
on Fedora 36.
What is xmvn-tools
This package provides various XMvn tools * XMvn Install, which is a command-line interface to XMvn installer. The installer reads reactor metadata and performs artifact installation according to specified configuration. * XMvn Resolver, which is a very simple commald-line tool to resolve Maven artifacts from system repositories. Basically it’s just an interface to artifact resolution mechanism implemented by XMvn Core. The primary intended use case of XMvn Resolver is debugging local artifact repositories. * XMvn Subst, which is a tool that can substitute Maven artifact files with symbolic links to corresponding files in artifact repository.
We can use yum
or dnf
to install xmvn-tools
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install xmvn-tools.
Install xmvn-tools on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install xmvn-tools
using dnf
by running the following command:
sudo dnf -y install xmvn-tools
Install xmvn-tools on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install xmvn-tools
using yum
by running the following command:
sudo yum -y install xmvn-tools
How To Uninstall xmvn-tools on Fedora 36
To uninstall only the xmvn-tools
package we can use the following command:
sudo dnf remove xmvn-tools
xmvn-tools Package Contents on Fedora 36
/usr/bin/xmvn-install
/usr/bin/xmvn-resolve
/usr/bin/xmvn-subst
/usr/share/java/xmvn
/usr/share/java/xmvn/xmvn-install.jar
/usr/share/java/xmvn/xmvn-resolve.jar
/usr/share/java/xmvn/xmvn-subst.jar
/usr/share/maven-metadata/xmvn-tools.xml
/usr/share/maven-poms/xmvn
/usr/share/maven-poms/xmvn/xmvn-install.pom
/usr/share/maven-poms/xmvn/xmvn-resolve.pom
/usr/share/maven-poms/xmvn/xmvn-subst.pom
/usr/share/maven-poms/xmvn/xmvn-tools.pom
References
Summary
In this tutorial we learn how to install xmvn-tools
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).