Search Gradle plugins

com.palantir.graal

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.7.1-2-gf4abf43

Created 16 June 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("com.palantir.graal") version "0.7.1-2-gf4abf43"
}

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("com.palantir.graal:com.palantir.graal.gradle.plugin:0.7.1-2-gf4abf43")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.palantir.graal")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.palantir.graal:com.palantir.graal.gradle.plugin:0.7.1-2-gf4abf43")
      }
    }
    
    apply(plugin = "com.palantir.graal")
  • Applying plugins to all subprojects .