Search Gradle plugins

Version 1.0.20200215081252

Created 15 February 2020.

Bootstraps a JDK installation within the Gradle wrapper to make Gradle builds truely self-contained.

Using the plugins DSL:

plugins {
  id("com.github.rmee.jdk-bootstrap") version "1.0.20200215081252"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.rmee:jdk-bootstrap:1.0.20200215081252")
  }
}

apply(plugin = "com.github.rmee.jdk-bootstrap")

Using the plugins DSL:

plugins {
  id "com.github.rmee.jdk-bootstrap" version "1.0.20200215081252"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.rmee:jdk-bootstrap:1.0.20200215081252"
  }
}

apply plugin: "com.github.rmee.jdk-bootstrap"

Learn how to apply plugins to subprojects