Using compiler that supports JDK 21 features (#8286)

This commit is contained in:
Jaroslav Tulach 2023-11-15 17:19:47 +01:00 committed by GitHub
parent dc4de729b6
commit f86e1b3aa5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,8 +26,8 @@ import java.io.FileWriter
object FrgaalJavaCompiler {
private val ENSO_SOURCES = ".enso-sources"
val frgaal = "org.frgaal" % "compiler" % "20.0.1" % "provided"
val sourceLevel = "20"
val frgaal = "org.frgaal" % "compiler" % "21.0.0" % "provided"
val sourceLevel = "21"
val debugArg =
"-J-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=localhost:8000"