Skip to content

Gradle plugin for reading properties from local.properties file.

License

Notifications You must be signed in to change notification settings

b3er/gradle-local-properties-plugin

Repository files navigation

Gradle local.properties plugin

This plugin read properties from local.properties file placed in project and parent projects folders and merge them sequentially with project properties.

That's all.

Usage

Build script snippet for use in all Gradle versions:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.b3er.local.properties:local-properties-plugin:1.1"
  }
}

apply plugin: "com.github.b3er.local.properties"

Build script snippet for new, incubating, plugin mechanism introduced in Gradle 2.1:

plugins {
    id "com.github.b3er.local.properties" version "1.1"
}

About

Gradle plugin for reading properties from local.properties file.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages