I'm creating a headless OSGI server that runs outside of Eclipse. I'm using Jetty as my Servlet container, and Equinox as my OSGI container. I'm using the org.eclipse.equinox.http.jetty bundle to add Jetty to OSGI. It all runs correctly if I start jetty and org.eclipse.equinox.http.registry manually from the osgi> prompt. However, I want this to run unattended, so I need to load those bundles automatically (or at least programatically) at OSGi startup. How do I do this?
In other words, how do I auto-start an OSGI bundle?