com.github.pomes.props
Owner: Duncan Dickinson
Small plugin to read properties file(s) into the project structure
https://github.com/pomes/gradle-plugin-props
Sources: https://github.com/pomes/gradle-plugin-pomes
Version 0.1.2 (latest)
0.1.2
Created 21 August 2016.
Small plugin to read properties file(s) into the project structure
Using the plugins DSL:
plugins {
id("com.github.pomes.props") version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.pomes.gradle-plugins:props:0.1.2")
}
}
apply(plugin = "com.github.pomes.props")
Using the plugins DSL:
plugins {
id "com.github.pomes.props" version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.pomes.gradle-plugins:props:0.1.2"
}
}
apply plugin: "com.github.pomes.props"