- How to Install Gradle on Ubuntu 20.04/18.04/16.04 LTS
- Introduction
- Prerequisites
- #1. Install JDK on Ubuntu
- #2. How to Install Gradle on Ubuntu
- #3. Configure Environment Variable for Gradle
- #4. Verify Gradle Version
- Related Articles:
- Как установить Gradle в Ubuntu 20.04
- Подготовка
- Установка OpenJDK
- Скачивание Gradle
- Настройка переменных среды
- Проверка установки Gradle
- Выводы
- How to Install Gradle on Ubuntu 22.04
- How to install Gradle on Ubuntu 22.04 from its official website
- Step 1: Install Java on Ubuntu
- Step 2: Download Gradle package
- Step 3: Unzip the downloaded package of Gradle
- Step 4: Set up environment variables
- Step 5: Change the permissions of file
- Step 6: Install the Gradle
- How to install Gradle on Ubuntu 22.04 using the snap
- Conclusion
- About the author
- Hammad Zahid
How to Install Gradle on Ubuntu 20.04/18.04/16.04 LTS
In this article, We are going to perform How to Install Gradle on Ubuntu 20.04/18.04/16.04 LTS or any other cloud platform like AWS EC2, Azure VM, Google Compute Cloud, etc., with preinstalled ubuntu.
Introduction
Gradle is Free and Open Source build automation tool. It is used to build any type of language code.
Prerequisites
#1. Install JDK on Ubuntu
sudo apt install openjdk-8-jdk
sudo apt install openjdk-11-jdk
openjdk version "11.0.10" 2021-01-19 OpenJDK Runtime Environment (build 11.0.10+9-Ubuntu-0ubuntu1.20.04) OpenJDK 64-Bit Server VM (build 11.0.10+9-Ubuntu-0ubuntu1.20.04, mixed mode, sharing)
#2. How to Install Gradle on Ubuntu
Here we are downloading and installing Gradle 6.4 Version, if you want to download latest or specific version go through Gradle Download page.
Download the gradle setup in /tmp directory using below command,
To download specific version of gradle use below syntax
sudo wget https://services.gradle.org/distributions/gradle-$-bin.zip
Here we are downloading gradle 7.0 on Ubuntu
sudo wget https://services.gradle.org/distributions/gradle-7.0-bin.zip
Install unzip on Ubuntu if not installed
unzip the gradle binary setup in /opt/gradle directory use below syntax
sudo unzip -d /opt/gradle gradle-$-bin.zip
To unzip gradle setup in /opt/gradle directory
sudo unzip -d /opt/gradle gradle-7.0-bin.zip
To update the gradle version and security updated, create symlink latest
sudo ln -s /opt/gradle/gradle-$ /opt/gradle/latest
sudo ln -s /opt/gradle/gradle-7.0 /opt/gradle/latest
If you want to install default gradle version for ubuntu , you can install gradle using PPA repository
Run below commands to Add PPA repository for gradle and install
sudo apt -y install vim apt-transport-https dirmngr wget software-properties-common sudo add-apt-repository ppa:cwchien/gradle sudo apt update sudo apt -y install gradle
#3. Configure Environment Variable for Gradle
sudo nano /etc/profile.d/gradle.sh
export GRADLE_HOME=/opt/gradle/latest export PATH=$PATH:/opt/gradle/gradle-7.0/bin
Load the environment variable using below command
source /etc/profile.d/gradle.sh
Give the excutable permission to above script
sudo chmod +x /etc/profile.d/gradle.sh
We have configured environment for gradle.
#4. Verify Gradle Version
Now verify the Gradle version on Ubuntu using below command.
------------------------------------------------------------ Gradle 7.0 ------------------------------------------------------------ Build time: 2021-04-09 22:27:31 UTC Revision: d5661e3f0e07a8caff705f1badf79fb5df8022c4 Kotlin: 1.4.31 Groovy: 3.0.7 Ant: Apache Ant(TM) version 1.10.9 compiled on September 27 2020 JVM: 11.0.10 (Ubuntu 11.0.10+9-Ubuntu-0ubuntu1.20.04) OS: Linux 5.4.0-1038-aws amd64
We have covered How to Install Gradle on Ubuntu.
Uninstall Gradle from Ubuntu 20.04 LTS
To uninstall Gradle from Ubuntu, if you installed gradle by downloading gradle zip setup, remove gradle directory from /opt
Remove the gradle.sh from /etc/profile.d directory
sudo rm -rf /etc/profile.d/gradle.sh
Run below commands if you have install gradle using APT
sudo apt-get remove gradle
sudo apt-get remove --auto-remove gradle
sudo apt-get purge --auto-remove gradle
In this article, We have covered How to Install Gradle on Ubuntu 20.04/18.04/16.04 LTS, Configure environment variable for Gradle, verify gradle version.
Related Articles:
Как установить Gradle в Ubuntu 20.04
Gradle — это универсальный инструмент, используемый для создания, автоматизации и доставки программного обеспечения. В основном он используется для проектов Java, C ++ и Swift.
Gradle сочетает в себе лучшие возможности Ant и Maven . В отличие от своих предшественников, которые использовали XML для написания сценариев, Gradle использует Groovy , динамический объектно-ориентированный язык программирования для платформы Java, чтобы определять проект и создавать сценарии.
В этом руководстве объясняется, как установить Gradle в Ubuntu 20.04. Мы загрузим последнюю версию Gradle с их официального сайта.
Подготовка
В инструкциях предполагается, что вы вошли в систему как пользователь root или пользователь с привилегиями sudo .
Установка OpenJDK
Gradle требует, чтобы на компьютере была установлена Java SE 8 или новее.
Введите следующие команды для установки OpenJDK 11 :
sudo apt update
sudo apt install openjdk-11-jdk
Проверьте установку Java, распечатав версию Java :
Результат должен выглядеть примерно так:
openjdk version "11.0.7" 2020-04-14 OpenJDK Runtime Environment (build 11.0.7+10-post-Ubuntu-3ubuntu1) OpenJDK 64-Bit Server VM (build 11.0.7+10-post-Ubuntu-3ubuntu1, mixed mode, sharing)
Скачивание Gradle
На момент написания этой статьи последняя версия Gradle — 6.5.1 . Прежде чем перейти к следующему шагу, проверьте страницу выпусков Gradle, чтобы узнать, доступна ли более новая версия.
Загрузите zip-файл Gradle, содержащий только двоичный файл, в каталог /tmp с помощью следующей команды wget :
VERSION=6.5.1
wget https://services.gradle.org/distributions/gradle-$-bin.zip -P /tmp
По завершении загрузки распакуйте файл в каталог /opt/gradle :
sudo unzip -d /opt/gradle /tmp/gradle-$-bin.zip
Если вы получаете сообщение об ошибке «sudo: unzip: command not found», установите пакет unzip с помощью sudo apt install unzip .
Gradle регулярно обновляется исправлениями безопасности и новыми функциями. Чтобы иметь больший контроль над версиями и обновлениями, мы создадим символическую ссылку с именем latest , которая указывает на каталог установки Gradle:
sudo ln -s /opt/gradle/gradle-$ /opt/gradle/latest
Позже, при обновлении Gradle, распакуйте более новую версию и измените символическую ссылку, чтобы она указывала на нее.
Настройка переменных среды
Нам нужно добавить каталог bin Gradle в системную PATH среды PATH . Для этого откройте текстовый редактор и создайте новый файл с именем gradle.sh внутри каталога /etc/profile.d/ .
sudo nano /etc/profile.d/gradle.sh
Вставьте следующую конфигурацию:
export GRADLE_HOME=/opt/gradle/latest export PATH=$GRADLE_HOME>/bin:$PATH>
Сохраните и закройте файл. Этот сценарий будет получен при запуске оболочки.
sudo chmod +x /etc/profile.d/gradle.sh
Загрузите переменные среды в текущий сеанс оболочки, используя source команду:
source /etc/profile.d/gradle.sh
Проверка установки Gradle
Чтобы проверить правильность установки Gradle, используйте команду gradle -v которая отобразит версию Gradle:
Вы должны увидеть что-то вроде следующего:
Welcome to Gradle 6.5.1! Here are the highlights of this release: - Experimental file-system watching - Improved version ordering - New samples For more details see https://docs.gradle.org/6.5.1/release-notes.html ------------------------------------------------------------ Gradle 6.5.1 ------------------------------------------------------------ Build time: 2020-06-30 06:32:47 UTC Revision: 66bc713f7169626a7f0134bf452abde51550ea0a Kotlin: 1.3.72 Groovy: 2.5.11 Ant: Apache Ant(TM) version 1.10.7 compiled on September 1 2019 JVM: 11.0.7 (Ubuntu 11.0.7+10-post-Ubuntu-3ubuntu1) OS: Linux 5.4.0-26-generic amd64
Вот и все. Вы установили последнюю версию Gradle в свою систему Ubuntu и можете начать ее использовать.
Выводы
Мы показали вам, как установить Gradle в Ubuntu 20.04. Теперь вы можете посетить официальную страницу документации Gradle и узнать, как начать работу с Gradle.
Если вы столкнулись с проблемой или хотите оставить отзыв, оставьте комментарий ниже.
How to Install Gradle on Ubuntu 22.04
Gradle is a build automation tool that is used to build different applications, from mobile applications to microservices. Gradle provides a platform to build, test, and maintain the applications; moreover, if you are working on a multi-build project, Gradle looks continuously at the project, and if you made any changes, even the minor changes, Gradle provides the output according to those changes.
Gradle improves the performance of applications by allowing the parallel execution of tasks and intra-tasks through a worker API, and every time can be limited to the execution time as these tasks have their own timeout property.
Gradle can be installed on different distributions of Linux, but in this guide, we are focusing on discovering the installation of Gradle on Ubuntu.
How to install Gradle on Ubuntu 22.04 from its official website
We will install Gradle by downloading its package from its official website, for this purpose, we will execute the following steps.
Step 1: Install Java on Ubuntu
Gradle is dependent on the Java, so we will first install the latest version of Java available in the default repository of Ubuntu using the command:
We will check out the version of an installed package of Java:
Step 2: Download Gradle package
Now after installing the Java, we will download the package of Gradle from its official website in the tmp directory of Ubuntu using the wget command:
We will list down the downloaded package to confirm its downloading:
Step 3: Unzip the downloaded package of Gradle
The downloaded package is zipped, we will unzip it using the command:
Now again list down the unzipped files by executing the ls command:
Step 4: Set up environment variables
Next step is to set up the environment variables, for this we will make some changes in the “sh” file of Gradle and for this we have to open it with the nano text editor:
In the opened file, add the below-mentioned two lines and then exit the editor by saving the changes made in the file:
export GRADLE_HOME = / opt / gradle / gradle-7.4.2
Step 5: Change the permissions of file
To make the “sh” file executable, we will change its permissions using the chmod command:
Step 6: Install the Gradle
Finally, load the environment variables using:
To confirm the installation, we will check the version of installed Gradle:
How to install Gradle on Ubuntu 22.04 using the snap
Another method to install Gradle on Ubuntu is by downloading and installing it from the snapcraft, and for this purpose, we need a snapd utility which can be installed by using the command:
To download and install the snap of Gradle from snapcraft, execute the command:
To remove the installed package of Gradle, use the command:
Conclusion
Gradle is a tool used to build, automate, test, and maintain the applications, whether they are mobile applications or applications designed to provide microservices. In this guide, Gradle’s installation method on Ubuntu has been explored by downloading its package from its official website.
About the author
Hammad Zahid
I’m an Engineering graduate and my passion for IT has brought me to Linux. Now here I’m learning and sharing my knowledge with the world.