Search Gradle plugins

Version 0.1.1

0.1.1

Created 23 May 2024.

Extend the wrapper task with a snippet to provision a jvm

Add this plugin to your build using the plugins DSL:

plugins {
  id("co.elastic.wrapper-provision-jdk") version "0.1.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("co.elastic.gradle:wrapper-provision-jdk:0.1.1")
      }
    }
    
    apply(plugin = "co.elastic.wrapper-provision-jdk")
  • Applying plugins to all subprojects .