From e2f23309f4d67ed519c664899d05ccebb5a297ea Mon Sep 17 00:00:00 2001 From: Julien Richard-Foy Date: Tue, 14 Feb 2023 14:42:24 +0100 Subject: [PATCH 1/2] Use native-image 22.3.1 --- build.sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sbt b/build.sbt index 6bd6e6fb80..6f2806553a 100644 --- a/build.sbt +++ b/build.sbt @@ -1173,6 +1173,7 @@ lazy val sbtClientProj = (project in file("client")) nativeImageReady := { () => () }, + nativeImageVersion := "22.3.1", nativeImageOutput := target.value / "bin" / "sbtn", nativeImageOptions ++= Seq( "--no-fallback", From 8a97419cb2fbf3b1f1bcce3c65365d51bb20e73e Mon Sep 17 00:00:00 2001 From: Julien Richard-Foy Date: Wed, 15 Feb 2023 11:56:27 +0100 Subject: [PATCH 2/2] Downgrade to 22.2.0 For some reason the jvm for 22.3.1 could not be found by Coursier, although it is present in the index. --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 6f2806553a..d49bdaa6ad 100644 --- a/build.sbt +++ b/build.sbt @@ -1173,7 +1173,7 @@ lazy val sbtClientProj = (project in file("client")) nativeImageReady := { () => () }, - nativeImageVersion := "22.3.1", + nativeImageVersion := "22.2.0", nativeImageOutput := target.value / "bin" / "sbtn", nativeImageOptions ++= Seq( "--no-fallback",