io.jumpco.open.gradle.local-properties
Owner: Corneil du Plessis
Local Properties Plugin. Override properties with gradle.local.properties
https://open.jumpco.io/projects/local-properties-plugin.html
Sources: https://github.com/open-jumpco/local-properties-plugin
Version 1.0.1 (latest)
Created 07 November 2021.
Local Properties Plugin. Override properties with gradle.local.properties
Add this plugin to your build using the plugins DSL:
plugins {
id("io.jumpco.open.gradle.local-properties") version "1.0.1"
}
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("io.jumpco.open.gradle.local-properties:io.jumpco.open.gradle.local-properties.gradle.plugin:1.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("io.jumpco.open.gradle.local-properties") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.jumpco.open.gradle.local-properties:io.jumpco.open.gradle.local-properties.gradle.plugin:1.0.1") } } apply(plugin = "io.jumpco.open.gradle.local-properties")
- Applying plugins to all subprojects .