From 51ff9026b167b6b08d9f8ad8263a0f01443fd59d Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 12 Dec 2023 00:12:38 +0100 Subject: [PATCH] :arrow_up: Change default java compilation target to jdk21 --- common/build.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/build.clj b/common/build.clj index 0719c72aa..0d864ee77 100644 --- a/common/build.clj +++ b/common/build.clj @@ -12,4 +12,4 @@ (b/javac {:src-dirs ["src"] :class-dir class-dir :basis basis - :javac-opts ["-source" "17" "-target" "17"]})) + :javac-opts ["-source" "21" "-target" "21" "-proc:none"]}))