【发布时间】:2017-03-23 14:37:21
【问题描述】:
这是一个新创建的空项目。 这是我的 build.gradle 文件。有问题的错误发生在应用插件上:'spring-boot'
group 'com.teamtreehouse'
version '1.0-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath('org.springframework.boot:spring-boot-gradle-plugin:1.3.3.RELEASE')
}
}
apply plugin: 'java'
apply plugin: 'spring-boot'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter-data-rest'
compile 'org.springframework.boot:spring-boot-starter-data-jpa'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
【问题讨论】:
标签: spring intellij-idea gradle spring-boot