Gradle Fedora 28 - Installing
-
And Relocate Gradle Archive.
sudo mv /tmp/gradle* /opt/
This for a System-Wide installation, for a local one simply put into your Home…
If Got “User is Not in Sudoers file” then see: How to Enable sudo -
Follow to Setup Gradle Env Variables and Path.
echo "GRADLE_HOME=/opt/gradle-[X.Y]" > $HOME/.bashrc
Just Replace the Gradle Version to [X.Y] in above Command
echo 'export PATH=$PATH:$GRADLE_HOME/bin' > $HOME/.bashrc
Then to Load New SetUp:
bash
-
Finally, to Test Gradle Installation.
gradle -v
-
(Optional) Speed Up Gradle Builds with Gradle Daemon
echo "org.gradle.daemon=true" > $HOME/.gradle/gradle.properties
Once you have globally enabled the Gradle Daemon in this way, all your builds will take advantage a Speed Boost.
-
Getting-Started with Gradle Automation Build Script
Contents