io.github.zero88.qwe.gradle.root
所有者: zero88
此插件向多项目构建的根项目中添加了一些实用工具
https://github.com/play-iot/gradle-plugin
源代码: https://github.com/zero88/qwe.git
使用 plugins DSL
plugins {
id("io.github.zero88.qwe.gradle.root") version "1.0.0"
}
使用 旧的插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.zero88.qwe:qwe-gradle-plugin:1.0.0")
}
}
apply(plugin = "io.github.zero88.qwe.gradle.root")
使用 plugins DSL
plugins {
id "io.github.zero88.qwe.gradle.root" version "1.0.0"
}
使用 旧的插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.zero88.qwe:qwe-gradle-plugin:1.0.0"
}
}
apply plugin: "io.github.zero88.qwe.gradle.root"