co.tomlee.standard.java.tool
所有者: Tom Lee
为我的个人项目提供标准的 Gradle 模板
https://github.com/thomaslee/gradle-standard-plugin/
源代码: https://github.com/thomaslee/gradle-standard-plugin/
使用插件 DSL
plugins {
id("co.tomlee.standard.java.tool") version "0.0.2"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.co.tomlee.gradle.plugins:gradle-standard-plugin:0.0.2")
}
}
apply(plugin = "co.tomlee.standard.java.tool")
使用插件 DSL
plugins {
id "co.tomlee.standard.java.tool" version "0.0.2"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.co.tomlee.gradle.plugins:gradle-standard-plugin:0.0.2"
}
}
apply plugin: "co.tomlee.standard.java.tool"