...
We are currently on Gradle 7. We will install it manually for ease of understanding. The official guide is here for reference. (Aside: we do not use the Gradle Wrapper)
Open a terminal and run the following:
Code Block |
---|
$ cd ~/Downloads
$ curl -sL https://services.gradle.org/distributions/gradle-7.4.2-all.zip -o gradle.zip
$ unzip -q gradle.zip -d gradle
# mv gradle/gradle-7.4.2/ /opt/.
# rm /opt/gradle
# ln -s /opt/gradle-7.4.2/ /opt/gradle
# rm /usr/bin/gradle
# ln -s /opt/gradle/bin/gradle /usr/bin/gradle |
Verify installation
...
- Open a console (or a Windows command prompt) and run
gradle -v
to run gradle and display the version, e.g.:
...
Multiexcerpt include | ||||
---|---|---|---|---|
|
Configure for IHMC software
Multiexcerpt include MultiExcerptName gradle.properties home location PageWithExcerpt Gradle - Copy paste the following lines into the file
Multiexcerpt include MultiExcerptName gradle.properties ubuntu example PageWithExcerpt Gradle
...
- Download the latest Gradle 7 distribution (7.4.2 as of writing).
- Choose the complete version.
- Remember where you downloaded it.
Unpack Gradle (the following are excerpted from the gradle website)
Excerpt - Create a new directory
C:\Gradle
with File Explorer. - Open a second File Explorer window and go to the directory where the Gradle distribution was downloaded. Double-click the ZIP archive to expose the content. Drag the content folder
gradle-7.4.2
to your newly createdC:\Gradle
folder.
- Create a new directory
Add to path
Excerpt - In File Explorer right-click on the
This PC
(orComputer
) icon, then clickProperties
->Advanced System Settings
->Environmental Variables
. - Under
System Variables
selectPath
, then clickEdit
. Add an entry forC:\Gradle\gradle-7.4.2\bin
. Click OK to save.
- In File Explorer right-click on the
Verify installation
Excerpt Open a console (or a Windows command prompt) and run
gradle -v
to run gradle and display the version, e.g.:Code Block $ gradle -v ------------------------------------------------------------ Gradle 7.4.2 ------------------------------------------------------------
- Configure for IHMC software
Multiexcerpt include MultiExcerptName gradle.properties home location PageWithExcerpt Gradle - Copy paste the following lines into the file
Multiexcerpt include MultiExcerptName gradle.properties windows example PageWithExcerpt Gradle
...