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

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:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.palantir.graal:gradle-graal:0.6.0-47-g7e6d7b5")
      }
    }
    
    apply(plugin = "com.palantir.graal")
  • Applying plugins to all subprojects .