blue.starry.scriptextender
Owner: Slash Nephy
ð A Gradle plugin which extends the existing Gradle Kotlin DSL.
https://github.com/SlashNephy/gradle-script-extender
Sources: https://github.com/SlashNephy/gradle-script-extender
Version 0.0.2 (latest)
0.0.2
Created 20 February 2021.
ð A Gradle plugin which extends the existing Gradle Kotlin DSL.
Using the plugins DSL:
plugins {
id("blue.starry.scriptextender") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("blue.starry:gradle-script-extender:0.0.2")
}
}
apply(plugin = "blue.starry.scriptextender")
Using the plugins DSL:
plugins {
id "blue.starry.scriptextender" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "blue.starry:gradle-script-extender:0.0.2"
}
}
apply plugin: "blue.starry.scriptextender"