Missing artifact com.sun:tools:jar 1.5.0
Posted 光辉飞翔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Missing artifact com.sun:tools:jar 1.5.0相关的知识,希望对你有一定的参考价值。
在使用m2eclipse插件时,在pom.xml中添加struts2-core.jar包后,需要依赖java运行时的tools.jar进行依赖。但是,此时eclipse无法读取tools包,出现如下错误:
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 SettingsDELL.m2
epositorycomsun ools1.5.0 ools-1.5.0.jar‘
大致说:找不到该tools-1.5.0.jar。
所以将C:Program FilesJavajdk1.6.0_10lib目录下的tools.jar拷贝到C:Documents and SettingsDELL.m2 epositorycomsun ools1.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>
即可!
以上是关于Missing artifact com.sun:tools:jar 1.5.0的主要内容,如果未能解决你的问题,请参考以下文章
Eclipse Maven 引入报错 Missing artifact com.sun:tools:jar 1.8.0
maven工程:Missing artifact com.sun:tools:jar:1.5.0:system 解决方法
Eclipse maven工程 Missing artifact com.sun:tools:jar:1.7.0:system 解决方法