2017-02-14 14 views
1

명령 행을 사용하여 Eclipse 기능을 설치하는 것은 잘 알려져 있습니다 [1].명령 행에 의한 Eclipse 기능 제거

그러나 명령 줄을 사용하여 Eclipse 기능을 제거하는 데 문제가 있습니다.

다음 명령을 사용합니다.

/opt/eclipse/eclipse \ 
-repository \ 
http://download.eclipse.org/releases/neon,\ 
https://dl.google.com/eclipse/plugin/4.6,\ 
http://pydev.org/updates" 
-application org.eclipse.equinox.p2.director \ 
-uninstallIU \ 
org.eclipse.egit.feature.group,\ 
org.eclipse.mylyn_feature.feature.group,\ 
org.eclipse.help.feature.group 

출력은 다음과 같습니다.

Uninstalling org.eclipse.egit.feature.group 4.4.1.201607150455-r. 
Uninstalling org.eclipse.mylyn_feature.feature.group 3.21.0.v20160914-0252. 
Uninstalling org.eclipse.help.feature.group 2.2.1.v20161124-1400. 

그러나 이클립스를 시작하면 플러그인이 계속 남아 있습니다. 도움이 되었습니까?

[1] http://blog.vogella.com/2012/04/04/installing-eclipse-features-via-the-command-line-with-the-p2-director/

답변

0

기능 제거 후 P2 가비지 수집기를 실행해야합니다. 당신은 같은 명령을 사용하여 명령 줄에서 수동으로 GC를 실행할 수 있습니다 SDKProfile Plug-in jar remains after feature uninstall

+0

피터 - 프로필 - 신청 org.eclipse.equinox.p2.garbagecollector.application 일식 , 대답 주셔서 감사합니다. 나는 이미 그렇게했지만 성공하지 못했습니다. –