0

在我的 build.gradle 文件中,我有一个错误的依赖项

compile('org.springframework.boot:spring-boot-starter234')

当我做

gradle build

我得到:

FAILURE: Build failed with an exception.

* What went wrong:
Could not resolve all files for configuration ':compileClasspath'.
> Could not find org.springframework.boot:spring-boot-starter234:.
  Required by:
      project :

但是在 Eclipse 中,当我运行任务时,我没有收到明确的消息。我只是得到: 在此处输入图像描述

注意:我已刷新 Gradle 项目并收到相同的消息

4

2 回答 2

1

我假设您使用mavenCentralorjcenter作为存储库。在您的构建脚本中,它们都没有带有 groupIdorg.springframework.boot和 artifactId的工件spring-boot-starter234,其中包含以下行:

compile('org.springframework.boot:spring-boot-starter234')

因此,gradle没有找到它。一种可能的正确依赖关系spring-boot-starter可能是:

compile('org.springframework.boot:spring-boot-starter:2.0.2.RELEASE')

或从Maven Repository中选择与您的项目更匹配的另一个版本。

于 2018-05-17T21:40:56.367 回答
0

您可以右键单击失败的任务(或在 Mac 上按住 ctrl 单击)并选择“显示失败”。

或者您可以单击带有工具提示“导航到此执行的控制台”的小控制台图标(在屏幕截图的右上角)

于 2018-05-17T18:04:47.127 回答