How To Install Gradle 5.4. on Ubuntu 18.04 LTS

Gradle is a free and open source build automation toolset based on the concepts of Apache Ant and Apache Maven. Gradle provides a platform to support the entire development lifecycle of a software project.

This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo’ to the commands to get root privileges. I will show you through the step by step installation Gradle on a 18.04 LTS (Bionic Beaver) server.

Install Gradle on Ubuntu 18.04 LTS

Step 1. First, make sure that all your system packages are up-to-date

sudo apt-get update
sudo apt-get upgrade

Step 2. Installing Java.

Gradle requires Java to be installed on your server. By default, Java is not available in Ubuntu’s repository. Add the Oracle Java PPA to Apt with the following command:

add-apt-repository ppa:webupd8team/java
apt-get update -y
apt-get install oracle-java8-installer

Verify the Java version by running the following command:

java -version

Step 3. Download Gradle

Run the commands below to download Gradle, At the time of this writing, the version is 4.10.2:

wget https://services.gradle.org/distributions/gradle-4.10.2-bin.zip -P /tmp

Now extract downloaded archive using the following command:

sudo unzip -d /opt/gradle /tmp/gradle-*.zip

Step 4. Configure Ubuntu Environment Variables.

You can do that by running the commands below to create a new file called gradle.sh in the /etc/profile.d directory:

sudo nano /etc/profile.d/gradle.sh

Paste the following configuration:

export GRADLE_HOME=/opt/gradle/gradle-4.10.2
export PATH=${GRADLE_HOME}/bin:${PATH}

When you’re done, run the commands below to make the file executable:

sudo chmod +x /etc/profile.d/gradle.sh
source /etc/profile.d/gradle.sh

Step 5. Verify the Gradle installation.

You can run the following command to check if the Gradle install was successful:

gradle -v

You should see the following output:

------------------------------------------------------------
Gradle 4.10.2
------------------------------------------------------------

Build time:   2018-11-11 18:46:15 UTC
Revision:     b4d8d5d170bb4ba5ramona88d7fe5647e2323d791dd

Kotlin DSL:   1.0-rc-8
Kotlin:       1.2.61
Groovy:       2.4.15
Ant:          Apache Ant(TM) version 1.9.11 compiled on May 18 2018
JVM:          1.8.0_181 (Oracle Corporation 25.181-b13)
OS:           Linux 4.15.0-46-generic amd64

Congratulation’s! You have successfully installed Gradle. Thanks for using this tutorial for installing Gradle on Ubuntu 18.04 LTS (Bionic Beaver) system. For additional help or useful information, we recommend you to check <a href="https://gradle.org/" target="_blank" rel="noopener">the official Gradle web site</a>.

Congratulation’s! You have successfully installed Gradle. Thanks for using this tutorial for installing Gradle on Ubuntu 18.04 LTS (Bionic Beaver) system. For additional help or useful information, we recommend you to check the official Gradle web site.

Leave a Reply