From b881a42ac967fd031b7cd98f1cf9d84355741fbc Mon Sep 17 00:00:00 2001 From: lread Date: Wed, 26 Jun 2024 16:41:35 -0400 Subject: [PATCH] build: use recommended GraalVM lib In the spirit of being a good example to others, switch from the internal GraalVM maven dep `org.graalvm.nativeimage/svm` to the public GraalVM SDK maven dep `org.graalvm.sdk/nativeimage`. And bump to current. Closes #36 --- deps.edn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.edn b/deps.edn index 7b74718..88c4ba0 100644 --- a/deps.edn +++ b/deps.edn @@ -3,7 +3,7 @@ :aliases {:svm ;; this library is "provided" - {:extra-deps {org.graalvm.nativeimage/svm {:mvn/version "23.0.1"}}} + {:extra-deps {org.graalvm.sdk/nativeimage {:mvn/version "24.0.1"}}} :build {:deps {io.github.clojure/tools.build {:mvn/version "0.9.4"} babashka/fs {:mvn/version "0.4.19"} babashka/process {:mvn/version "0.5.21"}