How To Install libmaven-ant-tasks-java on Debian 9
Introduction
In this tutorial we learn how to install libmaven-ant-tasks-java
on Debian 9.
What is libmaven-ant-tasks-java
libmaven-ant-tasks-java is:
The Mavent Ant Tasks allow several of Maven’s artifact handling features to be used from within an Ant build. These include:
- Dependency management - including transitive dependencies, scope recognition and SNAPSHOT handling.
- Artifact deployment - deployment to a Maven repository (file integrated, other with extensions)
- POM processing - for reading and writing a Maven 2 pom.xml file.
There are three methods to install libmaven-ant-tasks-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 libmaven-ant-tasks-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 libmaven-ant-tasks-java
using apt-get
by running the following command:
sudo apt-get -y install libmaven-ant-tasks-java
Install libmaven-ant-tasks-java Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libmaven-ant-tasks-java
using apt
by running the following command:
sudo apt -y install libmaven-ant-tasks-java
Install libmaven-ant-tasks-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 libmaven-ant-tasks-java
using aptitude
by running the following command:
sudo aptitude -y install libmaven-ant-tasks-java
How To Uninstall libmaven-ant-tasks-java on Debian 9
To uninstall only the libmaven-ant-tasks-java
package we can use the following command:
sudo apt-get remove libmaven-ant-tasks-java
Uninstall libmaven-ant-tasks-java And Its Dependencies
To uninstall libmaven-ant-tasks-java
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove libmaven-ant-tasks-java
Remove libmaven-ant-tasks-java Configurations and Data
To remove libmaven-ant-tasks-java
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge libmaven-ant-tasks-java
Remove libmaven-ant-tasks-java configuration, data, and all of its dependencies
We can use the following command to remove libmaven-ant-tasks-java
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libmaven-ant-tasks-java
Dependencies
libmaven-ant-tasks-java have the following dependencies:
References
Summary
In this tutorial we learn how to install libmaven-ant-tasks-java
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.