Skip to content

Commit

Permalink
Change JVM defaults to use Temurin JDK distribution (pantsbuild#15009)
Browse files Browse the repository at this point in the history
  • Loading branch information
alonsodomin authored Apr 6, 2022
1 parent 0716c80 commit 0d04ec0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/pants/jvm/subsystems.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class JvmSubsystem(Subsystem):

tool_jdk = StrOption(
"--tool-jdk",
default="adopt:1.11",
default="temurin:1.11",
help=softwrap(
"""
The JDK to use when building and running Pants' internal JVM support code and other
Expand All @@ -36,7 +36,7 @@ class JvmSubsystem(Subsystem):
)
jdk = StrOption(
"--jdk",
default="adopt:1.11",
default="temurin:1.11",
help=softwrap(
"""
The JDK to use.
Expand Down

0 comments on commit 0d04ec0

Please sign in to comment.