io.ghostbuster91.boilerplate.gradle
Owner: ghostbuster91
An adaptation of sbt-boilerplate plugin for gradle
https://github.com/ghostbuster91/gradle-boilerplate
Sources: https://github.com/ghostbuster91/gradle-boilerplate
Version 0.1.2 (latest)
0.1.2
Created 03 July 2019.
An adaptation of sbt-boilerplate plugin for gradle
Using the plugins DSL:
plugins {
id("io.ghostbuster91.boilerplate.gradle") version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.ghostbuster91.boilerplate:gradle-boilerplate:0.1.2")
}
}
apply(plugin = "io.ghostbuster91.boilerplate.gradle")
Using the plugins DSL:
plugins {
id "io.ghostbuster91.boilerplate.gradle" version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.ghostbuster91.boilerplate:gradle-boilerplate:0.1.2"
}
}
apply plugin: "io.ghostbuster91.boilerplate.gradle"