io.github.pacificengine.build.plugin.groovy
所有者: Joseph Salomone
一个帮助您使用Groovy编写Gradle插件的插件
https://pacificengine.github.io/build/plugin/groovy/
源代码: https://github.com/PacificEngine/build
使用插件DSL
plugins {
id("io.github.pacificengine.build.plugin.groovy") version "0.0.2"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.pacificengine.build.plugin:groovy:0.0.2")
}
}
apply(plugin = "io.github.pacificengine.build.plugin.groovy")
使用插件DSL
plugins {
id "io.github.pacificengine.build.plugin.groovy" version "0.0.2"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.pacificengine.build.plugin:groovy:0.0.2"
}
}
apply plugin: "io.github.pacificengine.build.plugin.groovy"