Search Gradle plugins

Version 0.1.6

0.1.6

Created 05 October 2021.

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.6"
}

See also:

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