linux中用eclipse 新建maven project,pom.xml中报Missing artifact jdk.tools:jdk.tools:jar:1.7


解决方法:

    在pom.xml中添加如下依赖:

    
        jdk.tools
        jdk.tools
        1.7
        system
        ${JAVA_HOME}/lib/tools.jar
    

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

以上方法亲自验证过