Missing indirectly referenced artifact com.sun:tools:jar:1.5.0:system 4种解决方案
eclipse中pom.xml配置文件第一行错误,错误信息为:Missing indirectly referenced artifact com.sun:tools:jar:1.5.0:system
是因为需要jdk的tools。根本原因是没有指定javaw.exe的的位置,在eclipse.ini中用-vm指定javaw的位置就可以了。
下面是:
第一种解决方案 修改eclipse.ini中的内容:
?
-startup
plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519
-product
org.eclipse.epp.package.jee.product
--launcher.XXMaxPermSize
256M
-showsplash
com.genuitec.myeclipse.product
--launcher.XXMaxPermSize
-vm
c:"Program Files"Java"jdk1.6.0_18"bin"javaw.exe
512m
-vmargs
-Xms256m
-Xmx512m
-Duser.language=en
-XX:PermSize=256M
-XX:MaxPermSize=512M
?
第二种解决方案 添加profiles
配置pom.xml文件
?
<dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId> <version>1.5.0</version> <scope>provid</scope> <type>jar</type> </dependency>
?