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 ?
我已经下载了jetty 7.3并在eclipse中使用jetty-wtp插件。我可以在哪里下载jetty的源代码包并将它们与jetty jars连接在一起?
I have found it myself at grepcode
我在grepcode找到了它。
3 个解决方案
#1
20
The sources can be downloaded here:
资料可在此下载:
- Eclipse distribution
- Eclipse发行版
- Codehaus distribution (jetty <=6, hightide, contrib)
- Codehaus distribution (jetty <=6, hightide, contrib)
#2
14
The best place appears to be from the Eclipse git source control repository:
最佳位置似乎来自Eclipse git源代码控制存储库:
http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/
http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/
For example I downloaded version 8.1.8 from here:
例如,我从这里下载了8.1.8版本:
http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/tag/?id=jetty-8.1.8.v20121106
http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/tag/?id=jetty-8.1.8.v20121106
#3
4
I could not figure out how to git clone
from git.eclipse.org
so I found this Github mirror:
我不知道如何从git.eclipse.org上复制,所以我找到了这个Github镜像:
https://github.com/eclipse/jetty.project
so just run:
所以只运行:
$ git clone git@github.com:eclipse/jetty.project.git jetty
#1
20
The sources can be downloaded here:
资料可在此下载:
- Eclipse distribution
- Eclipse发行版
- Codehaus distribution (jetty <=6, hightide, contrib)
- Codehaus distribution (jetty <=6, hightide, contrib)
#2
14
The best place appears to be from the Eclipse git source control repository:
最佳位置似乎来自Eclipse git源代码控制存储库:
http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/
http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/
For example I downloaded version 8.1.8 from here:
例如,我从这里下载了8.1.8版本:
http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/tag/?id=jetty-8.1.8.v20121106
http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/tag/?id=jetty-8.1.8.v20121106
#3
4
I could not figure out how to git clone
from git.eclipse.org
so I found this Github mirror:
我不知道如何从git.eclipse.org上复制,所以我找到了这个Github镜像:
https://github.com/eclipse/jetty.project
so just run:
所以只运行:
$ git clone git@github.com:eclipse/jetty.project.git jetty