Logo
  • Ubuntu
  • CentOS
  • Debian
  • Fedora
  • RedHat

How to Install Gradle on Ubuntu 22.04 - DesignLinux

Dec 09 2022
designlinux 0 Comments
how-to-install-gradle-on-ubuntu-22-04

Gradle is free and open-source build tool used to make different applications. It includes the best features of Ant and Maven. It is flexible and helps developers team to automate and build easier and faster software. In this tutorial we’ll explain how to install Gradle on Ubuntu 22.04 system.

How to Install Gradle on Ubuntu 22.04#

Perform the following steps to install Gradle on Ubuntu 22.04 system:

Step 1 – Prerequisites#

Ensure that you are logged in as root or user with sudo privileges.

Step 2 – Update System#

At first, we will update the system using below given command:

sudo apt update && upgrade -y

Step 3 – Install Java#

Gradle is dependent on Java so first we need to install Java to the server to run. To install OpenJDK run the following command:

sudo apt install default-jdk -y

Step 4 – Verify Java Installation#

Check the java version to verify the installation by issuing below given command:

java -version

The output should look something like this:

openjdk version "11.0.7" 2022-11-18
OpenJDK Runtime Environment (build 11.0.7+18-post-Ubuntu-3ubuntu1)
OpenJDK 64-Bit Server VM (build 11.0.7+18-post-Ubuntu-3ubuntu1, mixed mode, sharing)

Step 4 – Download Gradle#

After the installing Java on your system, download the latest Gradle distribution release binary file from its official download page. At the time of writing this tutorial, the latest version of Gradle is 7.6.

Run the following wget command to download the Gradle binary file:

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

Once the download is complete, extract the zip file in the /opt/gradle directory:

sudo unzip -d /opt/gradle /tmp/gradle-7.6-bin.zip

Gradle is regularly release updates with security patches and new features. To have more control over versions and updates, we’ll create a symbolic link named latest, which points to the Gradle installation directory:

sudo ln -s /opt/gradle/gradle-7.6 /opt/gradle/latest

The Gradle build tool has been configured on your Ubuntu 22.04 system. Later, when upgrading Gradle, unpack the newer version and change the symlink to point to it.

Step 5 – Setup the Environment Variables#

Now, we will setup Gradle with PATH environment variable to include the Gradle bin directory. Open your text editor and create a new file with name gradle.sh under the /etc/profile.d directory.

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

Add the following configuration:

export PATH=/opt/gradle/gradle-7.6/bin:$PATH

Save and close the file.

Make the script executable by running the following chmod command:

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

Now source the script to apply environment for current shell.

source /etc/profile.d/gradle.sh

At this stage, Grandle is installed on Ubuntu 22.04 Linux system.

Step 6 – Verify Gradle Installation#

Run the below command to verify that Gradle is installed properly by checking it’s version:

gradle -v

It should show something like the following:

Welcome to Gradle 7.6!

...

Conclusion#

You learned successfully how to install Gradle on Ubuntu 22.04 system. To know more about Gradle visit official Gradle Documentation page.

If you have any question or feedback, please leave a comment below.

Related

Tags: gradle, java, ubuntu

How to Find Linux OS Name and Kernel Version You Are Running

Prev Post

How to Install Git on Ubuntu 22.04

Next Post
Archives
  • January 2023
  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • July 2022
  • June 2022
  • April 2022
  • March 2022
  • February 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021
  • May 2021
  • April 2021
  • March 2021
  • February 2021
  • January 2021
  • December 2020
  • November 2020
  • October 2020
  • September 2020
  • August 2020
  • July 2020
  • June 2020
  • May 2020
Categories
  • AlmaLinux
  • Android
  • Ansible
  • Apache
  • Arch Linux
  • AWS
  • Backups
  • Bash Shell
  • Bodhi Linux
  • CentOS
  • CentOS Stream
  • Chef
  • Cloud Software
  • CMS
  • Commandline Tools
  • Control Panels
  • CouchDB
  • Data Recovery Tools
  • Databases
  • Debian
  • Deepin Linux
  • Desktops
  • Development Tools
  • Docker
  • Download Managers
  • Drupal
  • Editors
  • Elementary OS
  • Encryption Tools
  • Fedora
  • Firewalls
  • FreeBSD
  • FTP
  • GIMP
  • Git
  • Hadoop
  • HAProxy
  • Java
  • Jenkins
  • Joomla
  • Kali Linux
  • KDE
  • Kubernetes
  • KVM
  • Laravel
  • Let's Encrypt
  • LFCA
  • Linux Certifications
  • Linux Commands
  • Linux Desktop
  • Linux Distros
  • Linux IDE
  • Linux Mint
  • Linux Talks
  • Lubuntu
  • LXC
  • Mail Server
  • Manjaro
  • MariaDB
  • MongoDB
  • Monitoring Tools
  • MySQL
  • Network
  • Networking Commands
  • NFS
  • Nginx
  • Nodejs
  • NTP
  • Open Source
  • OpenSUSE
  • Oracle Linux
  • Package Managers
  • Pentoo
  • PHP
  • Podman
  • Postfix Mail Server
  • PostgreSQL
  • Python
  • Questions
  • RedHat
  • Redis Server
  • Rocky Linux
  • Security
  • Shell Scripting
  • SQLite
  • SSH
  • Storage
  • Suse
  • Terminals
  • Text Editors
  • Top Tools
  • Torrent Clients
  • Tutorial
  • Ubuntu
  • Udemy Courses
  • Uncategorized
  • VirtualBox
  • Virtualization
  • VMware
  • VPN
  • VSCode Editor
  • Web Browsers
  • Web Design
  • Web Hosting
  • Web Servers
  • Webmin
  • Windows
  • Windows Subsystem
  • WordPress
  • Zabbix
  • Zentyal
  • Zorin OS
Visits
  • 5
  • 634
  • 1,055,406

DesignLinux.com © All rights reserved

Go to mobile version