Search Gradle plugins

io.heapy.gradle.properties

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.1

Created 12 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.1"
}

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.1")
  }
}

apply(plugin = "io.heapy.gradle.properties")

Using the plugins DSL:

plugins {
  id "io.heapy.gradle.properties" version "1.1.1"
}

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.1"
  }
}

apply plugin: "io.heapy.gradle.properties"

Learn how to apply plugins to subprojects