Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change mirror of update sites of eclipse plugins

I'm using ganymede but I can't find the option to change mirror for the update sites. Is there a way to change this?

like image 939
ken Avatar asked Dec 05 '08 09:12

ken


Video Answer


1 Answers

The all notion of mirrors is no more a first class citizen of eclipse Ganymede update mechanism, but rather a simple property of a repositories (for metadata or artifact).

You may still force a mirror for a given feature, with a command-line similar to the one mentioned in this bug.

eclipsec -verbose -application org.eclipse.equinox.p2.metadata.repository.mirrorApplication 
-source http://www.someurl.com/ -destination file:x:/local/path/to/mirror

(not tested though)

See also this introduction to P2

like image 181
VonC Avatar answered Oct 11 '22 03:10

VonC