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

Missing artifact jdk.tools:jdk.tools:jar:1.7

程序员文章站 2022-06-18 20:18:41
...

在用maven进行hadoop项目搭建过程中pom.xml中报错:Missing artifact jdk.tools:jdk.tools:jar:1.7

解决办法在pom中加入下面依赖:

   

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