de.weltn24.spring-boot-conventions
所有者: WeltN24 CI-User
该插件应用了根据WeltN24的最佳实践为spring boot项目设置的约定。
https://github.com/WeltN24/gradle-spring-boot-conventions-plugin
源代码: https://github.com/WeltN24/gradle-plugin-spring-boot-conventions
使用插件DSL
plugins {
id("de.weltn24.spring-boot-conventions") version "2.1.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.weltn24:spring-boot-conventions:2.1.0")
}
}
apply(plugin = "de.weltn24.spring-boot-conventions")
使用插件DSL
plugins {
id "de.weltn24.spring-boot-conventions" version "2.1.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.weltn24:spring-boot-conventions:2.1.0"
}
}
apply plugin: "de.weltn24.spring-boot-conventions"