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)
Created 15 March 2020.
Manage build parameters from a *.property file or an environment variables
Add this plugin to your build using the plugins DSL:
plugins {
id("com.guidovezzoni.hyperprop") version "0.2.0-beta"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.guidovezzoni.hyperprop:com.guidovezzoni.hyperprop.gradle.plugin:0.2.0-beta") }
It can then be applied in the precompiled script plugin:plugins { id("com.guidovezzoni.hyperprop") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.guidovezzoni.hyperprop:com.guidovezzoni.hyperprop.gradle.plugin:0.2.0-beta") } } apply(plugin = "com.guidovezzoni.hyperprop")
- Applying plugins to all subprojects .