use blocks

This commit is contained in:
Paul Trowbridge 2022-11-30 14:26:37 -05:00
parent 1050930667
commit 05508d8b26
1 changed files with 12 additions and 6 deletions

View File

@ -2,8 +2,10 @@
find downloads page and get latest tarball. find downloads page and get latest tarball.
https://www.oracle.com/java/technologies/downloads/ https://www.oracle.com/java/technologies/downloads/
`wget https://download.oracle.com/java/19/latest/jdk-19_linux-x64_bin.tar.gz` ```
`tar -xvf downloaded_file` wget https://download.oracle.com/java/19/latest/jdk-19_linux-x64_bin.tar.gz
tar -xvf downloaded_file
```
move the extracted folder to /opt move the extracted folder to /opt
put the extracted location in your path variable put the extracted location in your path variable
``` ```
@ -16,11 +18,15 @@ export PATH=$PATH:$JAVA_HOME/bin
## install gradle ## install gradle
https://docs.gradle.org/current/userguide/installation.html https://docs.gradle.org/current/userguide/installation.html
go to gradle.org and find the latest bin.zip file (burried in the `direct link` hyperlink) go to gradle.org and find the latest bin.zip file (burried in the `direct link` hyperlink)
`wget https://services.gradle.org/distributions/gradle-7.6-bin.zip` ```
`unzip -d /opt/gradle gradle-7.6-bin.zip` wget https://services.gradle.org/distributions/gradle-7.6-bin.zip
unzip -d /opt/gradle gradle-7.6-bin.zip
```
point to the gradle install point to the gradle install
`export PATH=$PATH:/opt/gradle/gradle-7.6/bin` ```
`gradle -v` to validate export PATH=$PATH:/opt/gradle/gradle-7.6/bin
gradle -v` to validate
```
## clone this repo ## clone this repo
clone clone