Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Jetty/Howto/Jars

< Jetty‎ | Howto
Revision as of 13:25, 25 January 2012 by Unnamed Poltroon (Talk)



Introduction

Jetty is decomposed into many Jars providing utilities, HTTP, server, client, servlets and many optional features. It can be difficult to track which Jars are required and their dependencies.

The Jetty Dependencies reference explains the Jetty Jar structure.


Steps

Use Start.jar

You can use the he individual Jetty Jars directly by constructing your own classpath, or you can use the start.jar utility to build a classpath.

Use Maven

During development, the maven build tool is ideal for accessing Jetty Jars and their dependencies.

Aggregate Jars

You can also use the aggregate Jars to reduce the number of Jars required.

Back to the top