spring-boot gradle plugin can't be found

前端 未结 8 1373
醉话见心
醉话见心 2021-02-05 02:44

I have a separate gradle script that is just adding spring-boot plugin. It looks like this:

buildscript {
    repositories {
        mavenLocal()
        mavenCe         


        
8条回答
  •  感动是毒
    2021-02-05 03:03

    Starting from SpringBoot 1.4.0.RELEASE the plugin package has been slightly changed.

    apply plugin: org.springframework.boot.gradle.plugin.SpringBootPlugin
    

提交回复
热议问题