Installer installer = new ZipURLInstaller(
"http://download.eclipse.org/jetty/7.2.2.v20101205/dist/jetty-distribution-7.2.2.v20101205.tar.gz",
"target/downloads", "target/extracts");
installer.install();
InstalledLocalContainer container = new Jetty7xInstalledLocalContainer(
new Jetty7xStandaloneConfiguration("target/jetty7x"));
container.setHome(installer.getHome());
[...]