Search Gradle plugins

Version 0.8.20181027080502

Created 27 October 2018.

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 "0.8.20181027080502"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects