Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Did you ever wanted to test your bundles in a not yet released version for Felix and/or Equinox? If you use Pax Runner this is now seconds away (smile). You will just have to use the latest snapshot version.

To startup latest deployed SNAPSHOT of Felix, which by the moment this news post was written at was 1.5.0-SNAPSHOT, use the following:

Code Block
pax-run --platform=felix --version=latestsnapshot

To startup the latest "Stream Stable Build" of Equinox which by the moment this news post was written at was 3.5 M5 (3.5.0.v20090127-1630), use the following:

Code Block
pax-run --platform=equinox --version=latestvsnapshot

To startup the latest snapshot build of Knopflerfish which by the moment this news post was written at was 2.2.1.snapshot_trunk_2676, use the following:

Code Block
pax-run --platform=knopflerfish --version=latestsnapshot

(info) As you may know, Pax Runner caches the jars it uses, so you may run into cases where the latest snapshot version of the framework is not really the latest snapshot. To avoid that, use the option --overwriteSystemBundles. This option guarantees that the system bundles (=framework itself) wil be re-downloaded.

...