I'm using this technique to create a target platform for my Eclipse RCP projects: http://www.modumind.com/2009/09/01/creating-an-eclipse-rcp-target-platform/

The RCP SDK is downloaded directly using the software site. As for the delta pack, I manually downloaded it from website, and added the directory in the target definition file, which in my opinion is tedious when I want to upgrade the delta pack version next time.

Is it possible to download the delta pack using the software site too? Or at least do it in less manual and more maintainable approach?

Thanks.

link|improve this question

feedback

2 Answers

During setting up a software site for your target, you can select 'Include all environments' (after unselecting 'Include required software'), which should make maintaining a delta pack unnecessary.

link|improve this answer
I did check "Include all environments". However, when I tried to export, there's no Next button in the Export Dialog for me to select the platforms. When I manually added the delta pack directory into the target definition, then the Next button showed up. Am I missing something here? Thanks. – limc Nov 23 '10 at 23:52
@limc: Ah, sorry, don't know what that might be, we're not using the target definition to export with PDE, but with Tycho - which builds fine with the 'Include all environments' setting. – Fabian Steeg Nov 24 '10 at 0:03
Did you face some unsatisfiable dependencies when loading the delta pack from the update site? I got this problem using tycho and the target-platform. Could you please take a look at it? – coding.mof Sep 5 '11 at 10:58
feedback

My solution for sharing delta-pack:

  1. Download the official delta-pack
  2. Convert it to update-site (or software-site as you call it)
  3. Place the update-site to my own server (e.g. http://example.com/my-delta-pack)
  4. Add the update-site to my target definition

ad 2) I use a command-line tool called Publisher. It's a part of Eclipse IDE.

Example usage:

${eclipse.home}/eclipse.exe
   -application org.eclipse.equinox.p2.publisher.FeaturesAndBundlesPublisher
   -metadataRepository file:/${basedir}/${target.delta}
   -artifactRepository file:/${basedir}/${target.delta}" />
   -source ${source.delta}
   -publishArtifacts
   -compress
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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