Created
January 6, 2023 23:06
-
-
Save sgammon/f8903b93c50ee019fe36061436a1e43d to your computer and use it in GitHub Desktop.
Gradle properties for Elide toolchain issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# set these in your ~/.gradle/gradle.properties to fix gradle toolchain issues with Elide. | |
# (this is a temporary fix until the GraalVM toolchain plugin is fully built). | |
# fix for GraalVM toolchain | |
versions.java.language=19 | |
org.gradle.java.installations.paths=/Library/Java/JavaVirtualMachines/gvm-ce.jdk19/Contents/Home | |
org.gradle.java.home=/Library/Java/JavaVirtualMachines/gvm-ce.jdk19/Contents/Home | |
# repositories for Elide | |
elide.publish.repo.maven = gcs://elide-snapshots/repository/v3 | |
elide.publish.repo.docker.tools = us-docker.pkg.dev/elide-fw/tools | |
elide.publish.repo.docker.samples = us-docker.pkg.dev/elide-fw/samples | |
# enables -Werror for Kotlin | |
strictMode=true | |
# -- uncomment to use GraalVM EE: | |
# | |
#elide.jvm="GraalVM Enterprise 22.2 (Java 19)" | |
#elide.graalvm.variant=ENTERPRISE | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment