org.examples.greeting
Owner:
elementals.io
The Greeting plugin is used as a template for people to start their own plugin adventure
Version 1.4.4 (latest)
Created 22 July 2018.
The Greeting plugin is used as a template for people to start their own plugin adventure
Using the plugins DSL:
plugins {
id "org.examples.greeting" version "1.4.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.greeting-plugin:greeting-plugin:1.4.4"
}
}
apply plugin: "org.examples.greeting"
Using the plugins DSL:
plugins {
id("org.examples.greeting") version "1.4.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.greeting-plugin:greeting-plugin:1.4.4")
}
}
apply(plugin = "org.examples.greeting")