ru.raysmith.setupapp
所有者: Ray Smith
使用环境过滤继承依赖模块资源
https://github.com/RaySmith-ttc/setupapp.git
源代码: https://github.com/RaySmith-ttc/setupapp.git
使用 plugins DSL
plugins {
id("ru.raysmith.setupapp") version "1.7"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("ru.raysmith:setupapp:1.7")
}
}
apply(plugin = "ru.raysmith.setupapp")
使用 plugins DSL
plugins {
id "ru.raysmith.setupapp" version "1.7"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "ru.raysmith:setupapp:1.7"
}
}
apply plugin: "ru.raysmith.setupapp"