blue.starry.gradle
Owner: Slash Nephy
A Gradle plugin which extends the existing Gradle Kotlin DSL.
https://github.com/SlashNephy/.github/tree/master/env/gradle
Sources: https://github.com/SlashNephy/.github
Version 0.0.1 (latest)
0.0.1
Created 13 June 2022.
A Gradle plugin which extends the existing Gradle Kotlin DSL.
Using the plugins DSL:
plugins {
id("blue.starry.gradle") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("blue.starry:gradle-extension:0.0.1")
}
}
apply(plugin = "blue.starry.gradle")
Using the plugins DSL:
plugins {
id "blue.starry.gradle" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "blue.starry:gradle-extension:0.0.1"
}
}
apply plugin: "blue.starry.gradle"