MyEclipse8下载及svn配置

一直以来没有升级MyEclipse8,自MyEclipse8 2009年9月24日发布后,大体看了下提示说明:还支持struts2了 下载来看看了

下载地址 http://www.verycd.com/topics/2774019/

下面是配置svn

 

打开MyEclipse8.0
help->Software Updates->find and install(如果没有这个就用help->Software Updates->Add/Remove Software即可)
选择search for new features to install, Next
点击new remote site
输入name:subclipse,url:http://subclipse.tigris.org/update_1.6.x,点OK
选中subclipse,点击finish
在弹出框中选择subclipse,把Subclipse Integration for Mylyn 3.x去掉,
Next一路安装完成!

二.共享项目(把本地的项目共享到subversion服务器上)
打开MyEclipse8.0 ,假设要共享projTest是项目名称
右键项目projTest->Team->Share Project->Svn,
单库模式下url填写svn://svnserveraddress/,多库模式下url填写svn://svnserveraddress/Repository1,其中Repository1是库的名称
next直到finish,proj1就被共享到svn服务器上了,但是代码并没上传,还需要commit一次
右键项目projTest,team->commit,项目内容就被上传到svn服务器了

三.签出项目(把svn服务器上的项目下载的到本地)
打开MyEclipse8.0
window->open perspective->svn repository explorer(如果没有在other里选择)
在左边空白处右键->new->repository location
单库模式下url填写svn://svnserveraddress/,多库模式下url填写svn://svnserveraddress/Repository1(同步骤二)
右键projTest->check out
next直到finish,该项目就被签出到本地,切换到java视图就能看到该项目了。

 

 

posted @ 2009-10-28 14:03  niuky  阅读(709)  评论(0编辑  收藏  举报