io.github.kazurayam.Greetings
Owner: KAZUAKI URAYAMA (MATSUHASHI)
A plugin that prints hello and goodbye
https://kazurayam.github.io/PublishingCustomGradlePlugin_StepByStep/
Sources: https://github.com/kazurayam/PublishingCustomGradlePlugin_StepByStep/
Version 1.2 (latest)
1.2
Created 28 March 2023.
A plugin that prints hello and goodbye
Using the plugins DSL:
plugins {
id("io.github.kazurayam.Greetings") version "1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.kazurayam:greeting-gradle-plugin:1.2")
}
}
apply(plugin = "io.github.kazurayam.Greetings")
Using the plugins DSL:
plugins {
id "io.github.kazurayam.Greetings" version "1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.kazurayam:greeting-gradle-plugin:1.2"
}
}
apply plugin: "io.github.kazurayam.Greetings"