码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2016-01-27 10:53:45      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:

原文地址:http://blog.csdn.net/u013281331/article/details/40824707

在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中加上一个依赖项目:

 

        <dependency>
            <groupId>jdk.tools</groupId>
            <artifactId>jdk.tools</artifactId>
            <version>1.7</version>
            <scope>system</scope>
            <systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>
        </dependency>

问题得到解决。

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

标签:

原文地址:http://www.cnblogs.com/davidwang456/p/5162368.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!