From 5b5ebf8cf170a0bc0a348d57f784fc669271be30 Mon Sep 17 00:00:00 2001 From: ERSUCC Date: Sun, 21 Dec 2025 23:59:41 -0500 Subject: [PATCH] Target Java 17 in Scala compiler options --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 88e2de0..fb6abc6 100644 --- a/build.sbt +++ b/build.sbt @@ -9,7 +9,7 @@ isSnapshot := true scalaVersion := "3.7.0" Test / scalaSource := baseDirectory.value / "src" / "test" Compile / scalaSource := baseDirectory.value / "src" / "main" -scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature", "-Xfatal-warnings", "-release", "11") +scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature", "-Xfatal-warnings", "-release", "17") netLogoVersion := "7.0.0-2486d1e" // This extension gets its NL version from language-library; any update to its NL version has to be mirrored in that package and published in a new version --Jason B. (5/5/25) netLogoClassManager := "org.nlogo.extensions.py.PythonExtension"