Version 1.0-SNAPSHOT
1.0-SNAPSHOT
Created 02 June 2016.
Parsec extension of gradle-templates
Using the plugins DSL:
plugins {
id("com.yahoo.parsec-templates") version "1.0-SNAPSHOT"
}
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.0-SNAPSHOT")
}
}
apply(plugin = "com.yahoo.parsec-templates")
Using the plugins DSL:
plugins {
id "com.yahoo.parsec-templates" version "1.0-SNAPSHOT"
}
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.0-SNAPSHOT"
}
}
apply plugin: "com.yahoo.parsec-templates"