Maven构建时出现miss Tools.jar的解决方法

Java代码
Missing:  
----------  
1) com.sun:tools:jar:1.5.0 
 
   Try downloading the file manually from the project website. 
Missing:----------1) com.sun:tools:jar:1.5.0 Try downloading the file manually from the project website.

出现以上原因是因为jdk没有配好。要么我们重新配置jdk的环境,或者采用下面的解决方法
修改一个pom.xml就ok了
<!--jdk-->
   <dependency>  
          <groupId>com.sun</groupId>  
          <artifactId>tools</artifactId>  
          <version>1.6.0</version>  
          <scope>system</scope>  
          <systemPath>C:/Program Files/Java/jdk1.6.0_05/lib/tools.jar</systemPath>  
   </dependency>
系统环境变量配置为:java.home=C:\Program Files\Java\jdk1.6.0
则使用相对路径<systemPath>${java.home}/lib/tools.jar</systemPath>我们通常是使用系统的环境变量取得java.home的路径的

重启 eclipse  在删除添加的代码 即可解决!

你可能感兴趣的:(maven)