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"

Line 40: Line 40:
 
* [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@eclipse] ([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.
+
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.
 
+
See [[Jetty/Howto/Use_Jetty_with_Maven]] for more details.
+
  
  

Revision as of 20:33, 4 February 2010


Introduction

Jetty may be downloaded as a distribution bundle, as a maven dependency, as an OSGI bundle, or installed 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
wget http://download.eclipse.org/jetty/7.0.1.v20091125/dist/jetty-distribution-7.0.1.v20091125.tar.gz
tar xfz jetty-distribution-7.0.1.v20091125.tar.gz
cd jetty-distribution-7.0.1.v20091125
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

Linux Distributions

Back to the top