Search Gradle plugins

com.yahoo.parsec.template-plugin

Owner: Wayne Wu

Parsec extension of gradle-templates

Version 1.0.3-pre

Created 23 June 2016.

Parsec extension of gradle-templates

Using the plugins DSL:

plugins {
  id("com.yahoo.parsec.template-plugin") version "1.0.3-pre"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.yahoo.parsec.template-plugin" version "1.0.3-pre"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects