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 5: Line 5:
  
 
== Downloading Jetty Bundles==
 
== Downloading Jetty Bundles==
 
 
 
 
=== Download from Eclipse ===
 
=== Download from Eclipse ===
  
Line 15: Line 12:
 
** JNDI, JMX, OSGi, JASPI modules
 
** JNDI, JMX, OSGi, JASPI modules
 
** HTTP Client
 
** HTTP Client
 +
 +
Example download, install & run:
 +
<source lang="bash">
 +
curl -o jetty-distribution-7.0.1.v20091125.tar.gz 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
 +
</source>
  
 
=== Download from codehaus ===
 
=== Download from codehaus ===

Revision as of 20:10, 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.

Downloading Jetty Bundles

Download from Eclipse

  • Eclipse Downloads:
    • Core Jetty Web Server (HTTP & Websocket)
    • Core Jetty Servlet Container
    • JNDI, JMX, OSGi, JASPI modules
    • HTTP Client

Example download, install & run:

curl -o jetty-distribution-7.0.1.v20091125.tar.gz 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

Download from codehaus

  • Codehaus Downloads:
    • Jetty with non-eclipse modules: JSP, spring, terracotta, openspaces, etc.
    • Hightide Application Server (Jetty WebServer plus EE features)
    • Jetty Maven plugin
    • debian, RPM distributions
    • Older jetty releases

Maven Repositories

OSGi Update Repositories

Linux Distributions

Back to the top