From 6433fc828b60e212bb2f51773e9e0b4bfc2588ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93lafur=20P=C3=A1ll=20Geirsson?= Date: Tue, 19 Oct 2021 17:20:14 +0200 Subject: [PATCH] Start testing with Java 17 (Zulu) The code compiles so this commit is not enough to reproduce the Java 17 issues some people have reported. --- build.sbt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 01c63748..7fab94c5 100644 --- a/build.sbt +++ b/build.sbt @@ -302,11 +302,12 @@ lazy val minimized8 = project .dependsOn(agent, plugin) .disablePlugins(JavaFormatterPlugin) -lazy val minimized15 = project +lazy val minimized17 = project .in(file("tests/minimized/.j15")) .settings( minimizedSettings, - javaToolchainVersion := "15", + // Non-zulu release is blocked by https://github.com/coursier/jvm-index/pull/53 + javaToolchainVersion := "zulu:17", Compile / javaHome := None ) .dependsOn(agent, plugin)