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.6.0-47-g7e6d7b5

Created 04 December 2019.

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.6.0-47-g7e6d7b5"
}

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.6.0-47-g7e6d7b5")
    }
    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.6.0-47-g7e6d7b5")
      }
    }
    
    apply(plugin = "com.palantir.graal")
  • Applying plugins to all subprojects .