com.github.edcaceres.envconfig
Owner: Eduardo Caceres
Gradle plugin to generate .properties files from a groovy map in build.gradle
http://github.com/edcaceres/gradle-plugin-envconfig
Sources: http://github.com/edcaceres/gradle-plugin-envconfig
Version 1.0-SNAPSHOT (latest)
1.0-SNAPSHOT
Created 17 February 2016.
Gradle plugin to generate .properties files from a groovy map in build.gradle
Using the plugins DSL:
plugins {
id("com.github.edcaceres.envconfig") version "1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.edcaceres:gradle-plugin-envconfig:1.0-SNAPSHOT")
}
}
apply(plugin = "com.github.edcaceres.envconfig")
Using the plugins DSL:
plugins {
id "com.github.edcaceres.envconfig" version "1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.edcaceres:gradle-plugin-envconfig:1.0-SNAPSHOT"
}
}
apply plugin: "com.github.edcaceres.envconfig"