Maven错误-Missing artifact com.sun:tools:jar:1.5.0:system 解决方式

1、Missing artifact com.sun:tools:jar:1.5.0:system

Could not resolve dependencies for project com.iflytek.whshgl:whshgl-report:war:0.0.1-SNAPSHOT: Could not find artifact com.sun:tools:jar:1.5.0 at specified path C:javajre/../lib/tools.jar

<dependency>
            <groupId>com.sun</groupId>
            <artifactId>tools</artifactId>
            <version>1.5.0</version>
            <scope>system</scope>
            <systemPath>H:/Java/jdk1.7.0_05/lib/tools.jar</systemPath>
        </dependency>
原文地址:https://www.cnblogs.com/wuyechun/p/5576934.html