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)
1.1.2
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.
Using the plugins DSL:
plugins {
id("io.heapy.gradle.properties") version "1.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.heapy.gradle.properties:heapy-properties-gradle-plugin:1.1.2")
}
}
apply(plugin = "io.heapy.gradle.properties")
Using the plugins DSL:
plugins {
id "io.heapy.gradle.properties" version "1.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.heapy.gradle.properties:heapy-properties-gradle-plugin:1.1.2"
}
}
apply plugin: "io.heapy.gradle.properties"