我正试图在eclipse中建立我的第一个Gradle项目,但我在构建Gradle时遇到了问题。我复制了Spring.io上的build.gradle,但仍然无法正常构建。我获得了执行任务‘:编译器Java’的失败。我的build.gradle文件是这样的
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.1.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
jar {
baseName = 'gs-spring-boot'
version = '0.1.0'
}
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
// tag::jetty[]
compile("org.springframework.boot:spring-boot-starter-web") {
exclude module: "spring-boot-starter-tomcat"
}
compile("org.springframework.boot:spring-boot-starter-jetty")
// end::jetty[]
// tag::actuator[]
compile("org.springframework.boot:spring-boot-starter-actuator")
// end::actuator[]
testCompile("junit:junit")
}
2条答案
按热度按时间du7egjpx1#
如前所述,您的构建不能被编译
Compilation failed; see the compiler error output for details.
检查代码并找出导致它不能构建的原因。尝试运行带有
-s -i
选项的命令,以找出错误所在。yizd12fk2#
更改javahome变量以指向正确的目录,即您的JDK主目录。
在Eclipse中,您可以在Java Home下的运行配置中更改路径,例如更改为
C:\Program Files\Java\jdk-9.0.4
。然后以clean
和assemble
身份运行配置。