How To Install libgradle-plugins-java on Kali Linux
Introduction
In this tutorial we learn how to install libgradle-plugins-java on Kali Linux.
What is libgradle-plugins-java
libgradle-plugins-java is:
Gradle is a build tool with a focus on build automation and support for multi-language development. If you are building, testing, publishing, and deploying software on any platform, Gradle offers a flexible model that can support the entire development lifecycle from compiling and packaging code to publishing web sites. Gradle has been designed to support build automation across multiple languages and platforms including Java, Scala, Android, C/C++, and Groovy, and is closely integrated with development tools and continuous integration servers including Eclipse, IntelliJ, and Jenkins.
This package contains the standard Gradle plugins except:
- Zinc compiler
- Kotlin DSL
- AWS S3
- Google APIs
There are three methods to install libgradle-plugins-java on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install libgradle-plugins-java Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libgradle-plugins-java using apt-get by running the following command:
sudo apt-get -y install libgradle-plugins-javaInstall libgradle-plugins-java Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libgradle-plugins-java using apt by running the following command:
sudo apt -y install libgradle-plugins-javaInstall libgradle-plugins-java Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install libgradle-plugins-java using aptitude by running the following command:
sudo aptitude -y install libgradle-plugins-javaHow To Uninstall libgradle-plugins-java on Kali Linux
To uninstall only the libgradle-plugins-java package we can use the following command:
sudo apt-get remove libgradle-plugins-javaUninstall libgradle-plugins-java And Its Dependencies
To uninstall libgradle-plugins-java and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libgradle-plugins-javaRemove libgradle-plugins-java Configurations and Data
To remove libgradle-plugins-java configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libgradle-plugins-javaRemove libgradle-plugins-java configuration, data, and all of its dependencies
We can use the following command to remove libgradle-plugins-java configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libgradle-plugins-javaDependencies
libgradle-plugins-java have the following dependencies:
- ant-optional
- bnd
- junit4
- libantlr-java
- libatinject-jsr330-api-java
- libbcpg-java
- libbsh-java
- libcommons-cli-java
- libdd-plist-java
- libdom4j-java
- libfindbugs-java
- libgoogle-gson-java
- libgradle-core-java
- libguice-java
- libjatl-java
- libjaxen-java
- libjcifs-java
- libjgit-java
- libjs-jquery
- libmaven-resolver-java
- libmaven3-core-java
- libobjenesis-java
- libplexus-component-annotations-java
- libplexus-container-default-java
- libplexus-interpolation-java
- libplexus-utils-java
- libpolyglot-maven-java
- librhino-java
- libsimple-http-java
- libwagon-file-java
- libwagon-http-java
- libxerces2-java
- testng
References
Summary
In this tutorial we learn how to install libgradle-plugins-java package on Kali Linux using different package management tools: apt, apt-get and aptitude.