ch.adnovum.bootstrap
Owner: AdNovum Informatik AG
Bootstrap your build environment with a custom shell script.
https://github.com/adnovum/adn-bootstrap-gradle-plugin
Sources: https://github.com/adnovum/adn-bootstrap-gradle-plugin.git
Version 1.0.0.8 (latest)
1.0.0.8
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"