com.guidovezzoni.greetinggroovy
Owner: Guido Vezzoni
Template for people to start their own plugin adventure - in Groovy
https://github.com/guidovezzoni/greeting-gradle-plugin-groovy
Sources: https://github.com/guidovezzoni/greeting-gradle-plugin-groovy.git
Version 1.0.2 (latest)
1.0.2
Created 18 January 2020.
Template for people to start their own plugin adventure - in Groovy
Using the plugins DSL:
plugins {
id("com.guidovezzoni.greetinggroovy") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.guidovezzoni.greetinggroovy:greeting-gradle-plugin-groovy:1.0.2")
}
}
apply(plugin = "com.guidovezzoni.greetinggroovy")
Using the plugins DSL:
plugins {
id "com.guidovezzoni.greetinggroovy" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.guidovezzoni.greetinggroovy:greeting-gradle-plugin-groovy:1.0.2"
}
}
apply plugin: "com.guidovezzoni.greetinggroovy"