com.github.b3er.local.properties
Owner: Ilya Usanov
Gradle plugin for reading properties from local.properties file.
https://github.com/b3er/gradle-local-properties-plugin
Sources: https://github.com/b3er/gradle-local-properties-plugin
Version 1.1 (latest)
1.1
Created 16 February 2017.
Gradle plugin for reading properties from local.properties file of project and its parents.
Using the plugins DSL:
plugins {
id("com.github.b3er.local.properties") version "1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("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")
Using the plugins DSL:
plugins {
id "com.github.b3er.local.properties" version "1.1"
}
Using legacy plugin application:
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"