Search Gradle plugins

Version 0.1.4

0.1.4

Created 07 January 2020.

Gradle plugin that enables generation of environment properties

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.michaelruocco.environment-properties") version "0.1.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.michaelruocco:environment-properties-plugin:0.1.4")
      }
    }
    
    apply(plugin = "com.github.michaelruocco.environment-properties")
  • Applying plugins to all subprojects .