eclipse更新外掛程式的方法(maven)
以maven為例:
首先是去maven官網找尋外掛程式下載地址:
m2eclipse Core Update Site: http://m2eclipse.sonatype.org/sites/m2e
然後安裝如下圖示簡單操作就可安裝成功:
第一步:選擇安裝新軟體:
2:添加maven地址
3.添加外掛程式名稱
四勾選安裝
安裝maven後出現的異常:
Maven: The Maven Integration requires that Eclipse be running in a JDK
解決辦法:
The fully error message that you might get is as follows: The Maven Integration requires that Eclipse be running in a JDK, because a
number of Maven core plugins are using jars from the JDK.
Please make sure the -vm option in eclipse.ini is pointing to a JDK and verify
that Installed JREs are also using JDK installs.
To solve this problem add a new option into your eclipse.ini (which is located in your Eclipse installation folder): -vm C:\Program Files\Java\jdk1.6.0_06\bin\javaw.exe
It is important to have this line on the correct location, otherwise Eclipse will have no clue about this setting: -showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256M
-vm
C:\Program Files\Java\jdk1.6.0_06\bin\javaw.exe
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx512m
It has to be before the -vmargs argument.