com.github.michaelruocco.environment-properties
所有者: Michael Ruocco
Gradle插件,允许生成环境属性
https://github.com/michaelruocco/environment-properties-plugin
来源: https://github.com/michaelruocco/environment-properties-plugin.git
使用 插件DSL
plugins {
id("com.github.michaelruocco.environment-properties") version "0.1.8"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.michaelruocco:environment-properties-plugin:0.1.8")
}
}
apply(plugin = "com.github.michaelruocco.environment-properties")
使用 插件DSL
plugins {
id "com.github.michaelruocco.environment-properties" version "0.1.8"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.michaelruocco:environment-properties-plugin:0.1.8"
}
}
apply plugin: "com.github.michaelruocco.environment-properties"