Description Resource Path Location Type
The container 'Maven Dependencies' references non existing library '..\apache-maven-repository\com\sun\tools\1.5.0\tools-1.5.0.jar'
第一种情况,直接添加本地tool.jar依赖
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.6.0</version>
<scope>system</scope>
<systemPath>C:\jdk1.6.0_10\lib\tools.jar</systemPath>
</dependency>
<exclusions>
<exclusion>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
</exclusion>
</exclusions>