plugins {
id("org.wellijohn.greeting") version "2.0.9.13"
}
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.foo.myplugin:ajc:2.0.9.13")
}
}
apply(plugin = "org.wellijohn.greeting")
plugins {
id "org.wellijohn.greeting" version "2.0.9.13"
}
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.foo.myplugin:ajc:2.0.9.13"
}
}
apply plugin: "org.wellijohn.greeting"