Eclipse Helios Service Release 2下 缺少 com.sun:tools:jar:1.5.0:system的解決方法

Eclipse Helios Service Release 2下 缺少 com.sun:tools:jar:1.5.0:system的解決方法

當使用eclipse的maven:出现 Missing indirectly referenced artifact com.sun:tools:jar:1.5.0:system 错误,是因为需要jdk的tools。
根本原因是没有指定javaw.exe的的位置,所以在eclipse.ini中用-vm指定javaw的位置就可以了~
一定要在 openFile 以下加才行,在別的地方加,都會無效~

-startup
plugins/org.eclipse.equinox.launcher_1.1.1.R36x_v20101122_1400.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.2.R36x_v20101222
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
-vm
C:/java/jdk1.6.0_21/bin/javaw.exe

-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx512m


參考網址: http://blog.csdn.net/gongchenzhang/archive/2010/09/03/5861056.aspx


你可能感兴趣的:(Eclipse Helios Service Release 2下 缺少 com.sun:tools:jar:1.5.0:system的解決方法)