Skip to main content

Notice: This Wiki is now read only and edits are no longer 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 4: Line 4:
 
| body =  
 
| body =  
  
== Downloading Jetty Bundles==
+
== Jetty@eclipse Download==
=== Download from Eclipse ===
+
*[http://download.eclipse.org/jetty/ Eclipse Downloads]
 
+
* [http://download.eclipse.org/jetty/ Eclipse Downloads]:
+
 
** Core Jetty Web Server (HTTP & Websocket)  
 
** Core Jetty Web Server (HTTP & Websocket)  
 
** Core Jetty Servlet Container
 
** Core Jetty Servlet Container
Line 13: Line 11:
 
** HTTP Client
 
** HTTP Client
  
==== download, install & run:====
 
 
<source lang="bash">
 
<source lang="bash">
 
curl -o jetty-dist.tgz http://download.eclipse.org/jetty/7.0.1.v20091125/dist/jetty-distribution-7.0.1.v20091125.tar.gz
 
curl -o jetty-dist.tgz http://download.eclipse.org/jetty/7.0.1.v20091125/dist/jetty-distribution-7.0.1.v20091125.tar.gz
Line 21: Line 18:
 
</source>
 
</source>
  
=== Download from codehaus ===
+
== Jetty@codehaus Download==
 
+
*[http://dist.codehaus.org/jetty/ Codehaus Downloads]:
* [http://dist.codehaus.org/jetty/ Codehaus Downloads]:
+
 
** Jetty with non-eclipse modules: JSP, spring, terracotta, openspaces, etc.
 
** Jetty with non-eclipse modules: JSP, spring, terracotta, openspaces, etc.
 
** Hightide Application Server (Jetty WebServer plus EE features)
 
** Hightide Application Server (Jetty WebServer plus EE features)
Line 29: Line 25:
 
** debian, RPM distributions
 
** debian, RPM distributions
 
** Older jetty releases
 
** Older jetty releases
 +
  
 
== Maven Repositories ==
 
== Maven Repositories ==

Revision as of 20:19, 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
curl -o jetty-dist.tgz http://download.eclipse.org/jetty/7.0.1.v20091125/dist/jetty-distribution-7.0.1.v20091125.tar.gz
tar xfz jetty-dist.tgz
cd jetty-distribution-7.0.1.v20091125
java -jar start.jar

Jetty@codehaus Download

  • 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