Search Gradle plugins

Version 1.0.1 (latest)

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"

Learn how to apply plugins to subprojects