The plugin id 'spring-boot' is deprecated. Please use 'org.springframework.boot' instead.

apply plugin: 'spring-boot' ---1.4.1.RELEASE及更早版本使用此ID,2.0.0.RELEASE及后续版本不支持

buildscript {
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.1.RELEASE")
        classpath "io.spring.gradle:dependency-management-plugin"
    }
}


apply plugin: 'org.springframework.boot' ---1.4.2.RELEASE及后续版本可以使用此ID

buildscript {
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.2.RELEASE")
        classpath "io.spring.gradle:dependency-management-plugin"
    }
}


 

PS:

Gradle plugin:https://plugins.gradle.org/m2/

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐