How To Install libxml-maven-plugin-java on Debian 9
Introduction
In this tutorial we learn how to install libxml-maven-plugin-java on Debian 9.
What is libxml-maven-plugin-java
libxml-maven-plugin-java is:
A plugin for various XML related tasks like validation, transformation, and the like. The plugin offers the following goals:
- xml:validate validates XML files against a schema. If the files aren’t matching a certain schema, one may simply check, whether they are well formed.
- xml:transform transforms XML files by applying XSLT stylesheets.
There are three methods to install libxml-maven-plugin-java on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install libxml-maven-plugin-java Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install libxml-maven-plugin-java using apt-get by running the following command:
sudo apt-get -y install libxml-maven-plugin-java
Install libxml-maven-plugin-java Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install libxml-maven-plugin-java using apt by running the following command:
sudo apt -y install libxml-maven-plugin-java
Install libxml-maven-plugin-java Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install libxml-maven-plugin-java using aptitude by running the following command:
sudo aptitude -y install libxml-maven-plugin-java
How To Uninstall libxml-maven-plugin-java on Debian 9
To uninstall only the libxml-maven-plugin-java package we can use the following command:
sudo apt-get remove libxml-maven-plugin-java
Uninstall libxml-maven-plugin-java And Its Dependencies
To uninstall libxml-maven-plugin-java and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove libxml-maven-plugin-java
Remove libxml-maven-plugin-java Configurations and Data
To remove libxml-maven-plugin-java configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge libxml-maven-plugin-java
Remove libxml-maven-plugin-java configuration, data, and all of its dependencies
We can use the following command to remove libxml-maven-plugin-java configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libxml-maven-plugin-java
Dependencies
libxml-maven-plugin-java have the following dependencies:
- libjaxp1.3-java
- libmaven2-core-java
- libplexus-io-java
- libplexus-resources-java
- libplexus-utils-java
- libxerces2-java
- libxml-commons-resolver1.1-java
References
Summary
In this tutorial we learn how to install libxml-maven-plugin-java package on Debian 9 using different package management tools: apt, apt-get and aptitude.