标签:lib 工程 install tools.jar pen files epo art color
<dependency> <groupId>jdk.tools</groupId> <artifactId>jdk.tools</artifactId> <version>1.7</version> <scope>system</scope> <systemPath>C:\Program Files\Java\jdk1.7.0_75\lib\tools.jar</systemPath> </dependency>
也可以在本地仓库中手动安装tools.jar,如下
mvn install:install-file -DgroupId=jdk.tools -DartifactId=jdk.tools -Dpackaging=jar -Dversion=1.7 -Dfile=tools.jar -DgeneratePom=true
然后在pom.xml中添加:
<dependency> <groupId>jdk.tools</groupId> <artifactId>jdk.tools</artifactId> <version>1.6</version> </dependency>
Maven工程中报 Missing artifact jdk.tools:jdk.tools
标签:lib 工程 install tools.jar pen files epo art color
原文地址:http://www.cnblogs.com/chenzechao/p/6110532.html