If you like to use Eclipse Equinix ECF bundles without P2 or Eclipse you must unpack the pack200 OSGi bundels. For that eclipse provides a tool called "org.eclipse.equinox.p2.jarprocessor". Here a small bash script to show how to extract the OSGi bundles from the pack200 files.
This file contains 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
for file in *.gz; do | |
${JAVA_HOME}/java -jar ${ECLIPSE_HOME}/plugins/org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110502-1955.jar -unpack "${file}"; | |
done |
Links
- Eclipse Pack200 Documentation - http://wiki.eclipse.org/Pack200
- Eclipse ECF Download Page - http://www.eclipse.org/ecf/downloads.php