Search Gradle plugins

Version 1.0-SNAPSHOT (latest)

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"

Learn how to apply plugins to subprojects