How To Install jaxen on Fedora 36
Introduction
In this tutorial we learn how to install jaxen
on Fedora 36.
What is jaxen
Jaxen is an open source XPath library written in Java. It is adaptable to many different object models, including DOM, XOM, dom4j, and JDOM. Is it also possible to write adapters that treat non-XML trees such as compiled Java byte code or Java beans as XML, thus enabling you to query these trees with XPath too.
We can use yum
or dnf
to install jaxen
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install jaxen.
Install jaxen 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 jaxen
using dnf
by running the following command:
sudo dnf -y install jaxen
Install jaxen 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 jaxen
using yum
by running the following command:
sudo yum -y install jaxen
How To Uninstall jaxen on Fedora 36
To uninstall only the jaxen
package we can use the following command:
sudo dnf remove jaxen
jaxen Package Contents on Fedora 36
/usr/share/doc/jaxen
/usr/share/doc/jaxen/LICENSE.txt
/usr/share/java/jaxen.jar
/usr/share/maven-metadata/jaxen.xml
/usr/share/maven-poms/jaxen.pom
References
Summary
In this tutorial we learn how to install jaxen
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).