搜索Gradle插件

版本 1.0.2 (最新版本)

1.0.2

创建日期:2016年12月1日。

配置spring boot应用程序

使用 plugins DSL

plugins {
  id("com.marksandspencer.spring-boot") version "1.0.2"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.marksandspencer:mands-gradle-spring-boot:1.0.2")
  }
}

apply(plugin = "com.marksandspencer.spring-boot")

使用 plugins DSL

plugins {
  id "com.marksandspencer.spring-boot" version "1.0.2"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.marksandspencer:mands-gradle-spring-boot:1.0.2"
  }
}

apply plugin: "com.marksandspencer.spring-boot"

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