欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

maven报错Missing artifact jdk.tools:jdk.tools:jar:1.8解决方案

程序员文章站 2022-03-08 17:54:16
...

转载地址:https://blog.csdn.net/qy20115549/article/details/53004779

在eclipse中,遇到了Missing artifact jdk.tools:jdk.tools:jar:1.8。其他也没有报错,感到很奇怪。

maven报错Missing artifact jdk.tools:jdk.tools:jar:1.8解决方案

原因:tools.jar包是JDK自带的,pom.xml中以来的包隐式依赖tools.jar包,而tools.jar并未在库中,

只需要将tools.jar包添加到jdk库中即可。

解决方案:在pom文件中添加如下代码即可。

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

如下图,为解决之后的截图: 
maven报错Missing artifact jdk.tools:jdk.tools:jar:1.8解决方案

相关标签: maven