use blocks
This commit is contained in:
parent
1050930667
commit
05508d8b26
18
readme.md
18
readme.md
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user