com.github.michaelruocco.environment-properties
Owner: Michael Ruocco
Gradle plugin that enables generation of environment properties
https://github.com/michaelruocco/environment-properties-plugin
Sources: https://github.com/michaelruocco/environment-properties-plugin.git
Version 0.1.8 (latest)
0.1.8
Created 06 October 2021.
Gradle plugin that enables generation of environment properties
Using the plugins DSL:
plugins {
id("com.github.michaelruocco.environment-properties") version "0.1.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.michaelruocco:environment-properties-plugin:0.1.8")
}
}
apply(plugin = "com.github.michaelruocco.environment-properties")
Using the plugins DSL:
plugins {
id "com.github.michaelruocco.environment-properties" version "0.1.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.michaelruocco:environment-properties-plugin:0.1.8"
}
}
apply plugin: "com.github.michaelruocco.environment-properties"