Search Gradle plugins

Version 0.1.7

Created 05 October 2021.

Gradle plugin that enables generation of environment properties

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.michaelruocco:environment-properties-plugin:0.1.7")
  }
}

apply(plugin = "com.github.michaelruocco.environment-properties")

Using the plugins DSL:

plugins {
  id "com.github.michaelruocco.environment-properties" version "0.1.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.michaelruocco:environment-properties-plugin:0.1.7"
  }
}

apply plugin: "com.github.michaelruocco.environment-properties"

Learn how to apply plugins to subprojects