Search Gradle plugins

Version 0.1.2 (latest)

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"

Learn how to apply plugins to subprojects