co.tomlee.standard.java.library
所有者: Tom Lee
为我个人项目提供的标准 Gradle 模板
https://github.com/thomaslee/gradle-standard-plugin/
来源: https://github.com/thomaslee/gradle-standard-plugin/
使用 plugins DSL
plugins {
id("co.tomlee.standard.java.library") 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.library")
使用 plugins DSL
plugins {
id "co.tomlee.standard.java.library" 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.library"