任务‘:complementeJava’的执行失败,抱篮

0md85ypi  于 2022-09-21  发布在  Java
关注(0)|答案(2)|浏览(74)

我正试图在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")
}
du7egjpx

du7egjpx1#

如前所述,您的构建不能被编译

Compilation failed; see the compiler error output for details.

检查代码并找出导致它不能构建的原因。尝试运行带有-s -i选项的命令,以找出错误所在。

yizd12fk

yizd12fk2#

更改javahome变量以指向正确的目录,即您的JDK主目录。

在Eclipse中,您可以在Java Home下的运行配置中更改路径,例如更改为C:\Program Files\Java\jdk-9.0.4。然后以cleanassemble身份运行配置。

相关问题