Search Gradle plugins

Version 0.0.2 (latest)

Created 14 October 2015.

A Gradle plugin for loading and working with yaml properties, enhancing Gradle's built in functionality.

Using the plugins DSL:

plugins {
  id("pl.softmate.gradle-properties-yaml-plugin") version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.pl.softmate:gradle-properties-yaml-plugin:0.0.2")
  }
}

apply(plugin = "pl.softmate.gradle-properties-yaml-plugin")

Using the plugins DSL:

plugins {
  id "pl.softmate.gradle-properties-yaml-plugin" version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.pl.softmate:gradle-properties-yaml-plugin:0.0.2"
  }
}

apply plugin: "pl.softmate.gradle-properties-yaml-plugin"

Learn how to apply plugins to subprojects