Gradle Eclipse 出现编译问题
Gradle Eclipse getting compile issues
在我的 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 项目并收到相同的消息
您可以右键单击失败的任务(或按住 ctrl 单击 Mac)并选择 "Show Failures"。
或者您可以单击带有工具提示的小控制台图标(在屏幕截图的右上角)"Navigate to Console for this Execution"
我假设您使用 mavenCentral
或 jcenter
作为存储库。在您的构建脚本中,它们都没有带有 groupId org.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.
中选择与您的项目更匹配的另一个版本
在我的 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 项目并收到相同的消息
您可以右键单击失败的任务(或按住 ctrl 单击 Mac)并选择 "Show Failures"。
或者您可以单击带有工具提示的小控制台图标(在屏幕截图的右上角)"Navigate to Console for this Execution"
我假设您使用 mavenCentral
或 jcenter
作为存储库。在您的构建脚本中,它们都没有带有 groupId org.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.
中选择与您的项目更匹配的另一个版本