Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be 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 05:31, 18 September 2009 by Gregw.webtide.com (Talk | contribs)



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

The individual jetty jars may be used directly by constructing your own classpath, or the start.jar utility can be used to build a classpath.

Use Maven

During development, the maven build tool is ideal for accessing jetty jars and their dependencies.

Aggregate Jars

The aggregate jars may also used to reduce the number of jars required.

Back to the top