Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions hols/oci-basic-setup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ The goal of this task is to prepare a basic infrastructure environment comprised
```
3. Set the JAVA_HOME and PATH environment variables to include the corresponding directories from the extracted JDK binaries.
```shell
export JAVA_HOME=~/jdk-21.0.7/
export PATH=$JAVA_HOME/bin/:$PATH
export JAVA_HOME=$(ls -t -d "$(pwd)"/jdk*/ | head -n 1)
export PATH=${JAVA_HOME}bin/:$PATH
```
**Note:** If you want the above environment variable settings to persist between Cloud Shell sessions, add the definitions to your `~/.bashrc` file.
3. Make sure that Maven 3.8 or higher exists.
Expand Down
1 change: 1 addition & 0 deletions hols/oci-basic-setup/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ JDK_TAR_GZ_INSTALLER="https://download.oracle.com/java/21/latest/jdk-21_linux-x6
HELIDON_MP_APP_ZIP=oci-mp-server.zip
DEFAULT_PROJECT_PATH=~/oci-mp
SCRIPT_DIR=$(dirname "$0")
export TERRAFORM_TFSTATE=${SCRIPT_DIR}/terraform.tfstate
# shellcheck disable=SC1091
source "${SCRIPT_DIR}"/get_common.sh

Expand Down
Loading