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

Difference between revisions of "Jetty/Howto/Jars"

< Jetty‎ | Howto
(New page: The core of Jetty has no external dependencies other than the servlet-api, but it does have several optional 3rd party jars. The individual jetty jars may be used directly by construct...)
(No difference)

Revision as of 05:27, 18 September 2009

The core of Jetty has no external dependencies other than the servlet-api, but it does have several optional 3rd party jars.

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. The aggregate jars may also used to reduce the number of jars required. During development, the maven build tool is ideal for accessing jetty jars and their dependencies.

The Jetty Dependencies reference explains the jars.

Back to the top