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/Starting/Downloads"

m
Line 36: Line 36:
 
The distribution bundles from both Eclipse and Codehaus are available as Maven artefacts:
 
The distribution bundles from both Eclipse and Codehaus are available as Maven artefacts:
 
* [http://repo2.maven.org/maven2/org/eclipse/jetty/jetty-distribution/ jetty@eclipse] ([http://oss.sonatype.org/content/groups/jetty/org/eclipse/jetty/jetty-distribution/ snapshots])
 
* [http://repo2.maven.org/maven2/org/eclipse/jetty/jetty-distribution/ jetty@eclipse] ([http://oss.sonatype.org/content/groups/jetty/org/eclipse/jetty/jetty-distribution/ snapshots])
* [http://repo2.maven.org/maven2/org/mortbay/jetty/jetty-hightide/ jetty@eclipse] ([http://oss.sonatype.org/content/groups/jetty/org/mortbay/jetty/jetty-hightide/ snapshots])
+
* [http://repo2.maven.org/maven2/org/mortbay/jetty/jetty-hightide/ jetty@codehaus] ([http://oss.sonatype.org/content/groups/jetty/org/mortbay/jetty/jetty-hightide/ snapshots])
  
 
The individual Jetty modules are also available as Maven artefacts under the [http://repo2.maven.org/maven2/org/eclipse/jetty org.eclipse.jetty] and [http://repo2.maven.org/maven2/org/mortbay/jetty org.mortbay.jetty] group IDs. See [[Jetty/Howto/Use Jetty with Maven]] for more details.
 
The individual Jetty modules are also available as Maven artefacts under the [http://repo2.maven.org/maven2/org/eclipse/jetty org.eclipse.jetty] and [http://repo2.maven.org/maven2/org/mortbay/jetty org.mortbay.jetty] group IDs. See [[Jetty/Howto/Use Jetty with Maven]] for more details.

Revision as of 14:14, 12 May 2011


Introduction

You can download Jetty as a distribution bundle, a Maven dependency, an OSGi bundle, or install it via a Debian/RPM distribution.

Jetty@eclipse Download

  • Eclipse Downloads
    • Core Jetty Web Server (HTTP & Websocket)
    • Core Jetty Servlet Container
    • JNDI, JMX, OSGi, JASPI modules
    • HTTP Client
JETTY_VERSION=7.0.2.v20100331
wget http://download.eclipse.org/jetty/$JETTY_VERSION/dist/jetty-distribution-$JETTY_VERSION.tar.gz
tar xfz jetty-distribution-$JETTY_VERSION.tar.gz
cd jetty-distribution-$JETTY_VERSION
java -jar start.jar

Jetty@codehaus Download

  • Codehaus Downloads:
    • Hightide Application Server (Jetty WebServer plus EE features)
    • Jetty with non-eclipse modules: JSP, Spring, Terracotta, Openspaces, etc.
    • Jetty Maven plugin
    • Debian, RPM distributions
    • Older Jetty releases
wget http://dist.codehaus.org/jetty/jetty-hightide-7.0.1/jetty-hightide-7.0.1.v20091125.tar.gz
tar xfz jetty-hightide-7.0.1.v20091125.tar.gz
cd jetty-hightide-7.0.1.v20091125
java -jar start.jar

Maven Repositories

The distribution bundles from both Eclipse and Codehaus are available as Maven artefacts:

The individual Jetty modules are also available as Maven artefacts under the org.eclipse.jetty and org.mortbay.jetty group IDs. See Jetty/Howto/Use Jetty with Maven for more details.

OSGi Update Repositories

Jetty is available as OSGi bundles from P2 update sites: Jetty P2 Update

Linux Distributions

TBD

Jetty-6

Back to the top