io.wttech.config
使用交互式界面(GUI/CLI)组织并捕获配置输入值到您的 Gradle 构建
https://github.com/wttech/gradle-config-plugin
来源:https://github.com/wttech/gradle-config-plugin.git
使用 plugins DSL
plugins {
id("io.wttech.config") version "1.0.13"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.wttech.gradle.config:plugin:1.0.13")
}
}
apply(plugin = "io.wttech.config")
使用 plugins DSL
plugins {
id "io.wttech.config" version "1.0.13"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.wttech.gradle.config:plugin:1.0.13"
}
}
apply plugin: "io.wttech.config"