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