Search Gradle plugins

com.yahoo.parsec-templates

Owner: Wayne Wu

Parsec extension of gradle-templates

Version 1.1.2

Created 04 June 2016.

Parsec extension of gradle-templates

Using the plugins DSL:

plugins {
  id("com.yahoo.parsec-templates") version "1.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.yahoo.parsec.parsec-templates:parsec-templates:1.1.2")
  }
}

apply(plugin = "com.yahoo.parsec-templates")

Using the plugins DSL:

plugins {
  id "com.yahoo.parsec-templates" version "1.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.yahoo.parsec.parsec-templates:parsec-templates:1.1.2"
  }
}

apply plugin: "com.yahoo.parsec-templates"

Learn how to apply plugins to subprojects