新项目的build.gradle配置应该是这样的:
buildscript {
ext {
springBootVersion = '2.0.0.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}"}
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
posted on 2019-02-23 21:30
小王 阅读(428)
评论(0) 编辑 收藏 引用 所属分类:
Java 、
SpringBoot