Skip to content

Instantly share code, notes, and snippets.

@paulweb515
Created March 1, 2013 16:15
Show Gist options
  • Save paulweb515/5065702 to your computer and use it in GitHub Desktop.
Save paulweb515/5065702 to your computer and use it in GitHub Desktop.
# steps to find the location of bundles in our release repo:
$ wget http://download.eclipse.org/eclipse/updates/3.7/compositeArtifacts.jar
$ jar xf compositeArtifacts.jar
# this specifies child repo locations, relative URLs
$ grep 3.7.2 compositeArtifacts.xml
<child location='R-3.7-201106131736'/>
<child location='R-3.7.2-201202080800'/>
$ wget http://download.eclipse.org/eclipse/updates/3.7/R-3.7.2-201202080800/artifacts.jar
$ jar xf artifacts.jar
# You need the 'id' and the 'version' to get the artifact
$ grep osgi.bundle artifacts.xml | grep id=.org.eclipse.ui.workbench[^.]
<artifact classifier='osgi.bundle' id='org.eclipse.ui.workbench' version='3.7.1.v20120104-1859'>
<artifact classifier='osgi.bundle' id='org.eclipse.ui.workbench' version='3.7.1.v20120104-1859'>
$ wget http://download.eclipse.org/eclipse/updates/3.7/R-3.7.2-201202080800/plugins/org.eclipse.ui.workbench_3.7.1.v20120104-1859.jar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment