在 Eclipse 中开始使用锐化
我是一名 .Net 开发人员,最近我参与了一个正在移植一些 Java 软件的项目.我正在尝试锐化 启动并运行转换.
I'm a .Net developer and recently I've become part of a project that is doing a port of some java software. I'm trying to get Sharpen up and running to convert.
我已经下载并安装了面向 Java 开发人员的 Eclipse IDE(版本:Helios Service Release 1 Build id:20100917-0705).
I have downloaded and installed Eclipse IDE for Java Developers (Version: Helios Service Release 1 Build id: 20100917-0705).
我一直在尝试遵循此指南.按照有关如何设置锐化的说明,我尝试在 https://source.db4o.com/db4o/trunk/sharpen/ 来自 Eclipse.主机:source.db4o.com,存储库路径:source.db4o.com/db4o/trunk/sharpen.使用各种连接类型我在使用匿名用户名时连接被拒绝(或使用 ext 我得到无法运行程序ssh":CreateProcess error=2,系统找不到指定的文件).
I've been trying to follow this Guide. Following instructions on how to set up sharpen, I've tried then to grab a copy of the sharpen repo at https://source.db4o.com/db4o/trunk/sharpen/ from within eclipse. Host: source.db4o.com, Repository Path: source.db4o.com/db4o/trunk/sharpen. Using various connection types I get connection refused when using anony username (or using ext I get Cannot run program "ssh":CreateProcess error=2, the system cannot find the file specified").
或者,我可以使用 subversion/toritiseSVN 在上述 url 下载 repo.然后我将它导入我的工作区,但我得到了各种错误,例如 org.eclipse 无法解决.我知道这意味着什么,但我不确定如何解决这个问题.
Alternatively, I am able to use subversion/toritiseSVN to download the repo at the above mentioned url. I then import this into my workspace, but I get various errors such as org.eclipse cannot be resolved. I know what this means, but I am unsure how to go about solving that problem.
最后,最后一步是将其导出为插件开发"->可部署插件和片段".但是,我不认为这是一个导出选项.
Finally, the last step is to Export this as "Plug-in Development" -> "Deployable plugins and fragments". However, I don't see this as an export option.
任何帮助将不胜感激,
谢谢
推荐答案
你在防火墙或代理服务器后面吗?通常这是 connection denied
的主要原因.您还使用哪个 SVN 插件?默认情况下,eclipse IDE 仅带有 CVS.所以把svn repo放在 https://source.db4o.com/db4o/trunk/sharpen/ 在 CVS 插件中必然会失败.
Are you behind a firewall or proxy server? Normally it is the main reason for connection refused
. Also which SVN plugin are you using? By default eclipse IDE comes with CVS only. So putting the svn repo at https://source.db4o.com/db4o/trunk/sharpen/ is bound to fail in CVS plugin.
关于你的最后一个问题:
As for your last question:
您已经下载了基本的Java 开发者Eclipse IDE.您将需要 用于 RCP 和 RAP 开发人员的 Eclipse.查看 Eclipse 比较页面:http://eclipse.org/downloads/compare.php.
You have downloaded the basic Eclipse IDE for Java Developers. You will need the Eclipse for RCP and RAP Developers. Checkout the eclipse comparison page: http://eclipse.org/downloads/compare.php.
以下是一些 SVN/eclipse 链接:
Following are some SVN/eclipse links:
- http://subclipse.tigris.org/
- http://www.eclipse.org/subversive/
希望这会有所帮助.
相关文章