Search Gradle plugins

Version 1.1.20200614081240 (latest)

Created 14 June 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.1.20200614081240"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects