com.guidovezzoni.hyperprop
Owner: Guido Vezzoni
Manage build parameters from a *.property file or an environment variables
https://github.com/guidovezzoni/hyper-properties
Sources: https://github.com/guidovezzoni/hyper-properties.git
Version 0.2.0-beta (latest)
0.2.0-beta
Created 15 March 2020.
Manage build parameters from a *.property file or an environment variables
Using the plugins DSL:
plugins {
id("com.guidovezzoni.hyperprop") version "0.2.0-beta"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.guidovezzoni.hyperprop:hyper-properties:0.2.0-beta")
}
}
apply(plugin = "com.guidovezzoni.hyperprop")
Using the plugins DSL:
plugins {
id "com.guidovezzoni.hyperprop" version "0.2.0-beta"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.guidovezzoni.hyperprop:hyper-properties:0.2.0-beta"
}
}
apply plugin: "com.guidovezzoni.hyperprop"