Search Gradle plugins

Version 0.2

Created 22 February 2016.

Property Gradle Plugin

Using the plugins DSL:

plugins {
  id("com.gmaslowski.gradle.plugin.property") version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.gmaslowski.gradle.plugin.property:property-gradle-plugin:0.2")
  }
}

apply(plugin = "com.gmaslowski.gradle.plugin.property")

Using the plugins DSL:

plugins {
  id "com.gmaslowski.gradle.plugin.property" version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.gmaslowski.gradle.plugin.property:property-gradle-plugin:0.2"
  }
}

apply plugin: "com.gmaslowski.gradle.plugin.property"

Learn how to apply plugins to subprojects