com.github.edcaceres.envconfig
所有者: Eduardo Caceres
Gradle 插件,允许从 build.gradle 中的 Groovy 地图生成 .properties 文件
http://github.com/edcaceres/gradle-plugin-envconfig
源: http://github.com/edcaceres/gradle-plugin-envconfig
版本 1.0-SNAPSHOT(最新版本)
1.0-SNAPSHOT
创建于 2016 年 2 月 17 日。
Gradle 插件,允许从 build.gradle 中的 Groovy 地图生成 .properties 文件
使用 插件 DSL
plugins {
id("com.github.edcaceres.envconfig") version "1.0-SNAPSHOT"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.edcaceres:gradle-plugin-envconfig:1.0-SNAPSHOT")
}
}
apply(plugin = "com.github.edcaceres.envconfig")
使用 插件 DSL
plugins {
id "com.github.edcaceres.envconfig" version "1.0-SNAPSHOT"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.edcaceres:gradle-plugin-envconfig:1.0-SNAPSHOT"
}
}
apply plugin: "com.github.edcaceres.envconfig"