Search Gradle plugins

Version 1.0.0.8 (latest)

Created 04 October 2021.

Bootstrap your build environment with a custom shell script.

Using the plugins DSL:

plugins {
  id("ch.adnovum.bootstrap") version "1.0.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.ch.adnovum.bootstrap.gradle.plugins:ch.adnovum.bootstrap:1.0.0.8")
  }
}

apply(plugin = "ch.adnovum.bootstrap")

Using the plugins DSL:

plugins {
  id "ch.adnovum.bootstrap" version "1.0.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.ch.adnovum.bootstrap.gradle.plugins:ch.adnovum.bootstrap:1.0.0.8"
  }
}

apply plugin: "ch.adnovum.bootstrap"

Learn how to apply plugins to subprojects