vote up 1 vote down star

I need to install an eclipse plugin to a machine not connected to the Internet and I cannot find a dist to use for a local install.

Is there a tool for downloading a plugin from an update site and create a local installation archive (or a local update site)? Rumors says you can do this with eclipse, but I cant find any info on how to do it.

flag
Not clear what the maven-2 connection is here. Is there some background information you've left out, or should this be tagged "eclipse"? – Rich Seller Aug 10 at 21:33
Messed up the tags, sorry for that. – mafro Aug 11 at 7:54

2 Answers

vote up 2 vote down check

You can use P2 mirror tool (or P2 mirror in Galileo documentation) to mirror remote metadata and artifacts repository.

Here is sample command to mirror Galileo artifacts repository locally:

eclipse\eclipsec.exe -nosplash -verbose 
-application org.eclipse.equinox.p2.metadata.repository.mirrorApplication
-source http://download.eclipse.org/releases/galileo
-destination file:d:/temp/galileo/

eclipse\eclipsec.exe -nosplash -verbose
-application org.eclipse.equinox.p2.artifact.repository.mirrorApplication
-source http://download.eclipse.org/releases/galileo
-destination file:d:/temp/galileo/

(First command mirrors metadata, second mirrors artifacts. Command should be on one line in windows)

After you run these commands, you can use file:d:/temp/galileo as a local mirror.

Alternatively, you can use P2 Mirror Ant Task, which lets you specify installable units (plugins or features) to mirror. Note: when specifying feature, don't forget to use .feature.group suffix)

link|flag
Exactly the tool I was looking for - thanks! – mafro Aug 11 at 8:19
To be honest, I am still not sure how it works exactly: whether to mirror only artifacts and let P2 Publisher generate metadata, or whether to mirror both artifacts and metadata. Please share your findings when you succeed. Thank you. – Peter Štibraný Aug 11 at 8:21
Updated answer: when I run both commands (mirror metadata, mirror repository), I got correct update site for local use. I tested with download.eclipse.org/tools/mylyn/… – Peter Štibraný Aug 11 at 10:09
I used the mirror artifact command and used the downloaded files locally and it worked like a charm. Have not trided the ant task (yet). Thanks Peter for your help. – mafro Aug 11 at 10:52
vote up 0 vote down

You might find Building a custom Eclipse package helpful, although it's probably a bit more heavyweight that what you need.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.