blue.starry.gradle
拥有者: Slash Nephy
一个扩展现有 Gradle Kotlin DSL 的 Gradle 插件。
https://github.com/SlashNephy/.github/tree/master/env/gradle
源代码: https://github.com/SlashNephy/.github
版本 0.0.1(最新版)
0.0.1
创建于 2022 年 6 月 13 日。
一个扩展现有 Gradle Kotlin DSL 的 Gradle 插件。
使用 plugins DSL
plugins {
id("blue.starry.gradle") version "0.0.1"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("blue.starry:gradle-extension:0.0.1")
}
}
apply(plugin = "blue.starry.gradle")
使用 plugins DSL
plugins {
id "blue.starry.gradle" version "0.0.1"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "blue.starry:gradle-extension:0.0.1"
}
}
apply plugin: "blue.starry.gradle"