co.tomlee.standard.java.service
所有者: Tom Lee
我为个人项目创建的标准的Gradle模板
https://github.com/thomaslee/gradle-standard-plugin/
源代码:https://github.com/thomaslee/gradle-standard-plugin/
版本 0.0.2 (最新版本)
0.0.2
创建于2015年8月27日。
我为个人项目创建的标准的Gradle模板
使用插件DSL
plugins {
id("co.tomlee.standard.java.service") 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.service")
使用插件DSL
plugins {
id "co.tomlee.standard.java.service" 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.service"