io.heapy.gradle.properties
Owner: Ruslan Ibragimov
This plugin used to override gradle.properties with local.properties for development purposes. As well as externalize version to build.properties file, to keep gradle.properties clean.
https://github.com/Heapy/heapy-properties-gradle-plugin
Sources: https://github.com/Heapy/heapy-properties-gradle-plugin
Version 1.1.2 (latest)
Created 18 September 2020.
This plugin used to override gradle.properties with local.properties
for development purposes. As well as externalize version to build.properties file,
to keep gradle.properties clean.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.heapy.gradle.properties") version "1.1.2"
}
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.heapy.gradle.properties:io.heapy.gradle.properties.gradle.plugin:1.1.2") }
It can then be applied in the precompiled script plugin:plugins { id("io.heapy.gradle.properties") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.heapy.gradle.properties:io.heapy.gradle.properties.gradle.plugin:1.1.2") } } apply(plugin = "io.heapy.gradle.properties")
- Applying plugins to all subprojects .