搜索Gradle插件

版本 2.1.0 (最新版)

2.1.0

创建于2015年9月22日。

该插件根据WeltN24的最佳实践为spring boot项目应用约定

使用插件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"

学习如何将插件应用于子项目