MyEclipse SVN installation method

Source: Internet
Author: User
Tags object object

method One: Online installation
1. Open help-> MyEclipse Configuration

Center. Switch to the Software tab.

2. Click on the Add Site to open the dialog box in the dialog box name Input svn,url: http://subclipse.tigris.org/update_1.6.x
3. Find personal in the left column Find SVN deployment in site. Add the core Svnkit library and the optional JNA
Library (right-click Add to Profile), subclipse the following subclipse integration for Mylyn
3.0 can not be added (special note, do not add here).
4. In the lower right corner pane (Pending changes), click Apply. MyEclipse can be installed after reboot.
Method Two: Link installation
Install subclipse, MyEclipse9.0 svn plugin
1, Download the Site-1.6.10.zip file from the official website, the URL is: subclipse.tigris.org,
2, extract from features and plugins folder, copied to E:\MyEclipse\myPlugin\svn inside, Other *.xml files don't.
3, the new file Svn.link under E:\MyEclipse\MyEclipse9.0\dropins, the content is: Path=e:\\myeclipse \\myPlugin\\svn save.
4, (Mark son: This step is not sure, do not delete) Delete E:\MyEclipse\MyEclipse8.5\configuration \org.eclipse.update folder
5, restart MyEclipse everything is OK. [/size]
Both methods tried successfully
method Three: Direct decompression
Download SVN plugin: site-1.6.10.zip
Copy all of its files after decompression to: D:\Program files\genuitec\myeclipse 8.5\dropins (myeclipse installation directory)
Restart MyEclipse to appear svn!

Method Four: Sure feasible method

1. Download the latest SVN package:
http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240
2. Create a folder anywhere on your disk: "MYPLUGINS/SVN". Name can be taken, in order to facilitate the management of plugins, the proposed name is "Myplugins".
3. Copy the extracted two folders from svn to "MYPLUGINS/SVN".
4. Copy the following Java code, modify the path and execute:

 Packageapp;ImportJava.io.File;Importjava.util.ArrayList;Importjava.util.List;/*** MYECLIPSE9 Plugin Configuration Code generator * **/ Public classpluginconfigcreator{ PublicPluginconfigcreator () {} Public voidprint (String path) {List<String> list =getfilelist (path); if(List = =NULL)        {            return; }        intLength =list.size ();  for(inti = 0; i < length; i++) {String result= ""; String Thepath=Getformatpath (getString (List.get (i))); File File=NewFile (Thepath); if(File.isdirectory ()) {String FileName=File.getname (); if(Filename.indexof ("_") < 0) {print (thepath); Continue; } string[] Filenames= Filename.split ("_"); String filename1= Filenames[0]; String filename2= Filenames[1]; Result= filename1 + "," + filename2 + ", file:/" + path + "/" + FileName + "//,4,false";            SYSTEM.OUT.PRINTLN (result); } Else if(File.isfile ()) {String FileName=File.getname (); if(Filename.indexof ("_") < 0)                {                    Continue; }                intlast = Filename.lastindexof ("_");//the position of the last underlineString filename1 = filename.substring (0, last); String filename2= Filename.substring (last + 1, FileName. Length ()-4); Result= filename1 + "," + filename2 + ", file:/" + path + "/" + FileName + ", 4,false";            SYSTEM.OUT.PRINTLN (result); }        }    }     PublicList<string>getfilelist (String path) {path=Getformatpath (path); Path= path + "/"; File FilePath=NewFile (path); if(!filepath.isdirectory ()) {            return NULL; } string[] FileList=filepath.list (); List<String> Filelistfilter =NewArraylist<string>();  for(inti = 0; i < filelist.length; i++) {String tempfilename= Getformatpath (path +Filelist[i]);        Filelistfilter.add (TempFileName); }        returnFilelistfilter; }     PublicString getString (Object object) {if(Object = =NULL)        {            return""; }        returnstring.valueof (object); }     Publicstring Getformatpath (string path) {Path= Path.replaceall ("////", "/"); Path= Path.replaceall ("//", "/"); returnpath; }     Public Static voidMain (string[] args) {/*the installation directory of your plugin*/String Plugin= "Change to installation directory//genuitec//svn"; Newpluginconfigcreator (). print (plugin); }}


It is important to note that the modification becomes the path of the SVN, and it is recommended to change to an absolute path. Like d:/myplugins/svn/...
5, find "$myeclipse _home/configuration/org.eclipse.equinox.simpleconfigurator/", open the "Bundles.inf" file, in order to prevent confusion is not Is our own after add things, in the back of the car several times, and then paste the 4th step after running the code, save
6. Restart MyEclipse

SVN download

MyEclipse SVN installation method

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.