where to download jetty source code?
I have download jetty 7.3 and u开发者_开发百科se 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
The sources can be downloaded here:
- Eclipse distribution
- Codehaus distribution (jetty <=6, hightide, contrib)
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
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 git@github.com:eclipse/jetty.project.git jetty
精彩评论