无法构建应用程序获取错误::找不到类型 jdk 的工具链

我为此尝试了不同的解决方案,但对我不起作用,


请查看错误日志和toolchain.xml文件。


这些是错误日志:


[INFO] --- maven-toolchains-plugin:1.1:toolchain (default) @ ad-api ---

[INFO] Required toolchain: jdk [ vendor='sun' version='1.8' ]

[ERROR] No toolchain found for type jdk

[ERROR] Cannot find matching toolchain definitions for the following toolchain types:

jdk [ vendor='sun' version='1.8' ]

[INFO] ------------------------------------------------------------------------

[INFO] BUILD FAILURE

[INFO] ------------------------------------------------------------------------

[INFO] Total time: 0.619 s

[INFO] Finished at: 2018-10-05T08:56:24+02:00

[INFO] ------------------------------------------------------------------------

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-toolchains-plugin:1.1:toolchain (default) on project ad-api: Cannot find matching toolchain definitions for the following toolchain types:

[ERROR] jdk [ vendor='sun' version='1.8' ]

[ERROR] Please make sure you define the required toolchains in your ~/.m2/toolchains.xml file.

[ERROR] -> [Help 1]

[ERROR] 

[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.

[ERROR] Re-run Maven using the -X switch to enable full debug logging.

[ERROR] 

[ERROR] For more information about the errors and possible solutions, please read the following articles:

[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

当我将版本 1.8 更新到 jdk1.8._172 时出现上述错误


猛跑小猪
浏览 1035回答 1
1回答

有只小跳蛙

将 pom 中的版本改为 1.8 而不是 jdk1.8.0_172&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <configuration>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <toolchains>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <jdk>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <version>1.8</version>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <vendor>sun</vendor>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </jdk>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </toolchains>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </configuration>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java