CaiNiaoCoder
CaiNiaoCoder

Reputation: 3319

where to download jetty source code?

I have download jetty 7.3 and use it in eclipse with jetty-wtp plugin. where can I download jetty's source packages and attach them with jetty jars ?

I have found it myself at grepcode

Upvotes: 13

Views: 20951

Answers (4)

jesse mcconnell
jesse mcconnell

Reputation: 7182

Since this has changed over the years and this issue shows up in search ranking, these are the correct locations.

Jetty Website: https://jetty.org

Jetty Source: https://github.com/jetty

Upvotes: 1

Erik Kaplun
Erik Kaplun

Reputation: 38247

I could not figure out how to git clone from git.eclipse.org so I found this Github mirror:

https://github.com/eclipse/jetty.project

so just run:

$ git clone [email protected]:eclipse/jetty.project.git jetty

Upvotes: 5

Paul Crowley
Paul Crowley

Reputation: 1714

The best place appears to be from the Eclipse git source control repository:

http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/

For example I downloaded version 8.1.8 from here:

http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/tag/?id=jetty-8.1.8.v20121106

Upvotes: 14

davorp
davorp

Reputation: 4236

The sources can be downloaded here:

  1. Eclipse distribution
  2. Codehaus distribution (jetty <=6, hightide, contrib)

Upvotes: 20

Related Questions