作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是一个新创建的空项目。
这是我的build.gradle文件。有问题的错误发生在apply插件'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'
}
最佳答案
Gradle 3.0中API发生了重大变化,这意味着Spring Boot的Gradle插件的1.3.3.RELEASE与之不兼容。您需要将Gradle降级到2.x或将Spring Boot升级到1.5.x。
关于spring - Gradle sync-Error:ProjectScopeServices中没有StyledTextOutputFactory类型的服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42979195/
apply plugin: 'com.github.dcendents.android-maven' apply plugin: 'com.jfrog.bintray' // load propert
您好,我的 gradle 无法构建项目 apply plugin: 'com.android.application' android { packagingOptions {
我尝试启动一个 this Android Studio app . 当我使用 android studio 打开应用程序时出现此错误: No service of type Factory avail
我是一名优秀的程序员,十分优秀!