Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

Commit

Permalink
fix: dependencies.sh to work with Java 17 (#516)
Browse files Browse the repository at this point in the history
  • Loading branch information
suztomo committed Nov 10, 2021
1 parent b9a8209 commit 8422c1d
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .kokoro/dependencies.sh
Expand Up @@ -37,16 +37,13 @@ function determineMavenOpts() {
| sed -E 's/^.*"(.*?)".*$/\1/g' \
| sed -E 's/^(1\.[0-9]\.0).*$/\1/g'
)

case $javaVersion in
"17")
if [[ $javaVersion == 17* ]]
then
# MaxPermSize is no longer supported as of jdk 17
echo -n "-Xmx1024m"
;;
*)
else
echo -n "-Xmx1024m -XX:MaxPermSize=128m"
;;
esac
fi
}

export MAVEN_OPTS=$(determineMavenOpts)
Expand Down

0 comments on commit 8422c1d

Please sign in to comment.