com.zhangvb
Owner: zhangvb
Template for people to start their own plugin adventure
Sources: https://github.com/gradle-guides/greeting-plugin-example
Version 0.1 (latest)
0.1
Created 10 October 2019.
Template for people to start their own plugin adventure
Using the plugins DSL:
plugins {
id("com.zhangvb") version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.zhangvb:greeting-plugin-example:0.1")
}
}
apply(plugin = "com.zhangvb")
Using the plugins DSL:
plugins {
id "com.zhangvb" version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.zhangvb:greeting-plugin-example:0.1"
}
}
apply plugin: "com.zhangvb"