码迷,mamicode.com
首页 > 其他好文 > 详细

Maven工程中报 Missing artifact jdk.tools:jdk.tools

时间:2016-11-28 19:37:12      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:lib   工程   install   tools.jar   pen   files   epo   art   color   

        <dependency>
            <groupId>jdk.tools</groupId>
            <artifactId>jdk.tools</artifactId>
            <version>1.7</version>
            <scope>system</scope>
            <systemPath>C:\Program Files\Java\jdk1.7.0_75\lib\tools.jar</systemPath>
        </dependency>

 

也可以在本地仓库中手动安装tools.jar,如下
mvn install:install-file -DgroupId=jdk.tools -DartifactId=jdk.tools -Dpackaging=jar -Dversion=1.7 -Dfile=tools.jar -DgeneratePom=true
然后在pom.xml中添加:

<dependency>
    <groupId>jdk.tools</groupId>
    <artifactId>jdk.tools</artifactId>
    <version>1.6</version>
</dependency>

 

Maven工程中报 Missing artifact jdk.tools:jdk.tools

标签:lib   工程   install   tools.jar   pen   files   epo   art   color   

原文地址:http://www.cnblogs.com/chenzechao/p/6110532.html

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