Answers for "install gradle on ubuntu"

5

how to install gradle in ubuntu

sudo apt update
sudo apt install openjdk-8-jdk -y
java -version

wget https://services.gradle.org/distributions/gradle-5.0-bin.zip -P /tmp
sudo unzip -d /opt/gradle /tmp/gradle-*.zip
ls /opt/gradle/gradle-5.0
sudo nano /etc/profile.d/gradle.sh

####/etc/profile.d/gradle.sh
export GRADLE_HOME=/opt/gradle/gradle-5.0
export PATH=${GRADLE_HOME}/bin:${PATH}
## save and exit

source /etc/profile.d/gradle.sh
gradle -v
Posted by: Guest on October-23-2020
0

install gradle on ubuntu

# Enter the following commands to install OpenJDK 11 :
sudo apt update
sudo apt install openjdk-11-jdk

# Verify the Java installation by printing the Java version :
java -version

# Downloading Gradle
wget https://services.gradle.org/distributions/gradle-${VERSION}-bin.zip -P /tmp
sudo unzip -d /opt/gradle /tmp/gradle-${VERSION}-bin.zip

sudo ln -s /opt/gradle/gradle-${VERSION} /opt/gradle/latest

# Setting up the Environment Variables
sudo cat << EOF > /etc/profile.d/gradle.sh
export GRADLE_HOME=/opt/gradle/latest
export PATH=${GRADLE_HOME}/bin:${PATH}
EOF

# Make the script executable:
sudo chmod +x /etc/profile.d/gradle.sh
# Load the environment variables in the current shell session using the source command:
source /etc/profile.d/gradle.sh

gradle -v
Posted by: Guest on May-19-2021

Browse Popular Code Answers by Language