com.guidovezzoni.smartproperties
Owner: Guido Vezzoni
Manage build parameters from a *.property file or environment variables
https://github.com/guidovezzoni/smart-properties
Sources: https://github.com/guidovezzoni/smart-properties.git
Version 0.5.1-beta (latest)
Created 04 May 2020.
Manage build parameters from a *.property file or environment variables
Add this plugin to your build using the plugins DSL:
plugins {
id("com.guidovezzoni.smartproperties") version "0.5.1-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.smartproperties:com.guidovezzoni.smartproperties.gradle.plugin:0.5.1-beta") }
It can then be applied in the precompiled script plugin:plugins { id("com.guidovezzoni.smartproperties") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.guidovezzoni.smartproperties:com.guidovezzoni.smartproperties.gradle.plugin:0.5.1-beta") } } apply(plugin = "com.guidovezzoni.smartproperties")
- Applying plugins to all subprojects .