com.github.ptkltm.development.recursiveinclude
所有者: Patrick Leitermann
递归应用子项目和组合构建的插件。
https://github.com/ptkltm/com.github.ptkltm.development.recursiveinclude.gradleplugin
源代码: https://github.com/ptkltm/com.github.ptkltm.development.recursiveinclude.gradleplugin
使用 plugins DSL
plugins {
id("com.github.ptkltm.development.recursiveinclude") version "0.3.0"
}
使用 遗留类型的插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.ptkltm.development.recursiveinclude.gradleplugin:com.github.ptkltm.development.recursiveinclude.gradleplugin:0.3.0")
}
}
apply(plugin = "com.github.ptkltm.development.recursiveinclude")
使用 plugins DSL
plugins {
id "com.github.ptkltm.development.recursiveinclude" version "0.3.0"
}
使用 遗留类型的插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.ptkltm.development.recursiveinclude.gradleplugin:com.github.ptkltm.development.recursiveinclude.gradleplugin:0.3.0"
}
}
apply plugin: "com.github.ptkltm.development.recursiveinclude"