Created
March 1, 2013 16:15
-
-
Save paulweb515/5065702 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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