io.github.kdabir.gradle-helpers
Owner: Kunal Dabir
Gradle build script helpers
https://github.com/kdabir/gradle-helpers
Sources: https://github.com/kdabir/gradle-helpers
Using the plugins DSL:
plugins {
id("io.github.kdabir.gradle-helpers") version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.github.kdabir.gradlehelpers:gradle-helpers:0.0.3")
}
}
apply(plugin = "io.github.kdabir.gradle-helpers")
Using the plugins DSL:
plugins {
id "io.github.kdabir.gradle-helpers" version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.github.kdabir.gradlehelpers:gradle-helpers:0.0.3"
}
}
apply plugin: "io.github.kdabir.gradle-helpers"