dev.zach.graalvm
Owner: Zachary Trant
A plugin for Gradle that adds tasks to download, extract and interact with GraalVM tooling.
https://github.com/palantir/gradle-graal
Sources: https://github.com/palantir/gradle-graal
Version 0.6.0-130-g7d408f7 (latest)
Created 30 April 2020.
A plugin for Gradle that adds tasks to download, extract and interact with GraalVM tooling.
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.zach.graalvm") version "0.6.0-130-g7d408f7"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("dev.zach.graalvm:dev.zach.graalvm.gradle.plugin:0.6.0-130-g7d408f7") }
It can then be applied in the precompiled script plugin:plugins { id("dev.zach.graalvm") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.zach.graalvm:dev.zach.graalvm.gradle.plugin:0.6.0-130-g7d408f7") } } apply(plugin = "dev.zach.graalvm")
- Applying plugins to all subprojects .