開發常見錯誤之 :Missing artifact com.sun:tools:jar 1.7.0
阿新 • • 發佈:2017-07-30
problems code iss file http 1.7 tin osi 改名
Missing artifact com.sun:tools:jar 1.7.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.7.0\tools-1.7.0.jar‘
大致說:找不到該tools-1.7.0.jar。
所以將C:\Program Files\Java\jdk1.7.0_10\lib\目錄下的tools.jar拷貝到C:\Documents and Settings\DELL\.m2\repository\com\sun\tools\1.7.0\目錄下,並將tools.jar改名為tools-1.7.0.jar,並在pom.xml中作如下配置:
<dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId> <version>1.7.0</version> </dependency>
開發常見錯誤之 :Missing artifact com.sun:tools:jar 1.7.0