-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(*): install SDKMAN! & use upgraded groovy lang
- Loading branch information
Showing
2 changed files
with
18 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
# Workaround: openjdk-Base image does not update links to /usr/lib/jvm/default-java/bin/java | ||
export JAVA_HOME=/opt/java/openjdk/ | ||
export PATH=/opt/java/openjdk/bin:$PATH | ||
|
||
# Point to IDEA installation directory | ||
export ENV IDEA_HOME=/srv/idea.latest | ||
|
||
# Language settings from Dockerfile. Adopt also for user bamboo | ||
export LANG="en_US.UTF-8" | ||
export LC_MESSAGES="C" | ||
export LC_MESSAGES="C" | ||
|
||
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!! | ||
export SDKMAN_DIR="/home/ideainspect/.sdkman" | ||
[[ -s "/home/ideainspect/.sdkman/bin/sdkman-init.sh" ]] && source "/home/ideainspect/.sdkman/bin/sdkman-init.sh" |