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)
1.0.1
Created 07 November 2021.
Local Properties Plugin. Override properties with gradle.local.properties
Using the plugins DSL:
plugins {
id("io.jumpco.open.gradle.local-properties") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.jumpco.open:local-properties-plugin:1.0.1")
}
}
apply(plugin = "io.jumpco.open.gradle.local-properties")
Using the plugins DSL:
plugins {
id "io.jumpco.open.gradle.local-properties" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.jumpco.open:local-properties-plugin:1.0.1"
}
}
apply plugin: "io.jumpco.open.gradle.local-properties"