Reputation: 3319
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
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
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
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