maven工程:Missing artifact com.sun:tools:jar:1.5.0:system 解决方法

Posted Perry Blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven工程:Missing artifact com.sun:tools:jar:1.5.0:system 解决方法相关的知识,希望对你有一定的参考价值。

修改maven的pom文件指定

a.定义属性
<properties>
<java.home>C:\Program Files\Java\jdk1.6.0_21</java.home>
</properties>

b.加入一个 dependency
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.6.0</version>
<scope>system</scope>
<systemPath>${java.home}/lib/tools.jar</systemPath>
</dependency>

 
 
 










以上是关于maven工程:Missing artifact com.sun:tools:jar:1.5.0:system 解决方法的主要内容,如果未能解决你的问题,请参考以下文章

解决Maven工程中报 Missing artifact jdk.tools:jdk.tools:

maven missing artifact 怎么解决

maven工程:Missing artifact com.sun:tools:jar:1.5.0:system 解决方法

Eclipse maven工程 Missing artifact com.sun:tools:jar:1.7.0:system 解决方法

解决:eclipse或STS运行maven工程出现Missing artifact jdk.tools:jdk.tools:jar:1.7问题

Maven报错Missing artifact jdk.tools:jdk.tools:jar:1.7--转