How To Install libgradle-plugins-java on Kali Linux

In this tutorial we learn how to install libgradle-plugins-java on Kali Linux. libgradle-plugins-java is Powerful build system for the JVM - All plugins

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 update

After updating apt database, We can install libgradle-plugins-java using apt-get by running the following command:

sudo apt-get -y install libgradle-plugins-java

Install libgradle-plugins-java Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libgradle-plugins-java using apt by running the following command:

sudo apt -y install libgradle-plugins-java

Install 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 update

After updating apt database, We can install libgradle-plugins-java using aptitude by running the following command:

sudo aptitude -y install libgradle-plugins-java

How 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-java

Uninstall 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-java

Remove 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-java

Remove 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-java

Dependencies

libgradle-plugins-java have the following dependencies:

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.