Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "SWTBot/Contributing"

(New page: === Get the source === The source code of the SWTBot project can be found in the Subversion repository. It contains the usual SVN directory structure TRUNK, BRANCHES, and TAGS. The develo...)
 
m (Get the source)
Line 4: Line 4:
  
 
'''SVN repository''': http://dev.eclipse.org/svnroot/technology/org.eclipse.swtbot/  
 
'''SVN repository''': http://dev.eclipse.org/svnroot/technology/org.eclipse.swtbot/  
 +
''Git repository''': http://github.com/ketan/swtbot (git://github.com/ketan/swtbot.git)
  
The development repository can be browsed here: http://dev.eclipse.org/viewcvs/index.cgi/trunk/?root=Technology_SWTBot
+
Browse the repository:
 +
* (unofficial, but tracks the official) http://github.com/ketan/swtbot
 +
* (official) http://dev.eclipse.org/viewcvs/index.cgi/trunk/?root=Technology_SWTBot
  
You can check out from the SVN repository all the single plug-ins by hand, and add the necessary dependencies to your Eclipse installation.  
+
You can check out from the SVN repository all the single plug-ins by hand, and refer to the ''readme.txt'' file inside the ''org.eclipse.swtbot.releng'' plugin to setup your environment.
  
 
=== Contributing ===
 
=== Contributing ===
  
 
There are many articles about contributing to Eclipse projects like [http://blog.hantsuki.org/2008/03/07/how-to-contribute-to-eclipse-projects/ Remy Suens blog] or the [http://wiki.eclipse.org/index.php/Mylyn/Contributor_Reference Mylyn Contributor reference].
 
There are many articles about contributing to Eclipse projects like [http://blog.hantsuki.org/2008/03/07/how-to-contribute-to-eclipse-projects/ Remy Suens blog] or the [http://wiki.eclipse.org/index.php/Mylyn/Contributor_Reference Mylyn Contributor reference].

Revision as of 02:06, 12 March 2009

Get the source

The source code of the SWTBot project can be found in the Subversion repository. It contains the usual SVN directory structure TRUNK, BRANCHES, and TAGS. The development version of the code (HEAD) can be found in TRUNK.

SVN repository: http://dev.eclipse.org/svnroot/technology/org.eclipse.swtbot/ Git repository': http://github.com/ketan/swtbot (git://github.com/ketan/swtbot.git)

Browse the repository:

You can check out from the SVN repository all the single plug-ins by hand, and refer to the readme.txt file inside the org.eclipse.swtbot.releng plugin to setup your environment.

Contributing

There are many articles about contributing to Eclipse projects like Remy Suens blog or the Mylyn Contributor reference.

Back to the top