Missing artifact jdk.tools:jdk.tools:jar:1.6

Issue:

 

Solution:在pom.xml加入如下依赖即可

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

猜你喜欢

转载自agilestyle.iteye.com/blog/2285525