当前位置: 首页 > 知识库问答 >
问题:

任务“:compileJava”的执行失败。格拉德尔

公冶谦
2023-03-14

我正在尝试在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个答案

国言
2023-03-14

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

在Eclipse中,您可以在Java Home下更改运行配置中的路径,例如更改为C:\Program Files\Java\jdk-9.0.4。然后以清洁和组装的方式运行配置。

潘意
2023-03-14

如前所述,您的构建无法编译

编译失败;有关详细信息,请参阅编译器错误输出。

检查代码并找出导致它无法构建的原因。尝试使用-s-i选项运行命令以找出问题所在。

 类似资料: