您的位置:首页 > 编程语言 > Java开发

Maven报错Missing artifact jdk.tools:jdk.tools:jar:1.7

2017-07-10 10:58 302 查看
在Eclipse中检出Maven工程,一直报这个错:“Missing artifact jdk.tools:jdk.tools:jar:1.7”



看整个pom.xml文件也不见其他异常。
而tools.jar包是JDK自带的,于是怀疑pom.xml中以来的包隐式依赖tools.jar包,而tools.jar并未在库中,
好比:当前工程依赖A包,而A包在开发打包过程依赖tools.jar包,现在A发布了,我们的工程依赖A包,所以我们应该在包依赖中加上tools.jar包;

这样分析后,问题就好解决了,直接在pom.xml中加上一个依赖项目:

[html] view
plain copy

<dependency>  

    <groupId>jdk.tools</groupId>  

    <artifactId>jdk.tools</artifactId>  

    <version>1.7</version>  

    <scope>system</scope>  

    <systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>  

</dependency>  

问题得到解决。

If the jdk.tools is present in the .m2 repository. Still you get the error something like this:

missing artifact: jdk.tools.....c:.../jre/..

In the buildpath->configure build path-->Libraries.Just change JRE system library from JRE to JDK
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: