`
抽风的鱼
  • 浏览: 49811 次
  • 性别: Icon_minigender_2
  • 来自: 杭州
文章分类
社区版块
存档分类
最新评论

Missing artifact com.sun:tools:jar 1.5.0 终极解决方法

 
阅读更多

Missing artifact com.sun:tools:jar 1.5.0

 

解决办法一:

 

手动配置pom.xml,添加一个dependency如下:

 

<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<scope>system</scope>
<systemPath>${JAVA_HOME}/../lib/tools.jar</systemPath>
</dependency>

 

即可!

 

如果办法不能解决,试用第二种方法。

 

解决办法二:

 

首先,查看错误列表windows->Show View->Problems,在有以上问题的同时,还会出现该错误。
The container 'Maven Dependencies' references non existing library 'C:\Documents and Settings\DELL\.m2\repository\com\sun\tools\1.5.0\tools-1.5.0.jar'
大致说:找不到该tools-1.5.0.jar。

 

所以将C:\Program Files\Java\jdk1.6.0_10\lib\目录下的tools.jar拷贝到C:\Documents and Settings\DELL\.m2\repository\com\sun\tools\1.5.0\目录下,并将tools.jar改名为 tools-1.5.0.jar,并在pom.xml中作如下配置:

 

<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.5.0</version>
</dependency>

 

即可!

更多:http://www.javaxxz.com/thread-72464-1-1.html

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics