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"

(See also)
(improved information about contributing)
Line 1: Line 1:
 
{{SWTBot}}
 
{{SWTBot}}
=== 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.
+
== Getting the source ==
  
* '''SVN''': http://dev.eclipse.org/svnroot/technology/org.eclipse.swtbot/
+
The source code of the SWTBot project can be found in a eclipse.org Subversion repository:
* '''Git''': http://github.com/ketan/swtbot
+
  
Browse the repository:
+
{{codeblock|svn co http://dev.eclipse.org/svnroot/technology/org.eclipse.swtbot/trunk/}}
* '''Git''': http://github.com/ketan/swtbot
+
* '''ViewSvn''': http://dev.eclipse.org/viewcvs/index.cgi/trunk/?root=Technology_SWTBot
+
  
You can check out from the SVN/git 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.
+
Alternatively, you can use a git mirror of that repository:
  
=== Contributing ===
+
{{codeblock|git clone git://github.com/ketan/swtbot.git}}
 +
 +
You can also browse the repository using a web interface: [http://dev.eclipse.org/viewcvs/index.cgi/trunk/?root=Technology_SWTBot SVN], [http://github.com/ketan/swtbot Git]
  
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].
+
== Building SWTBot ==
  
=== See also ===
+
See [http://dev.eclipse.org/viewcvs/index.cgi/trunk/org.eclipse.swtbot.releng/readme.txt?revision=230&root=Technology_SWTBot ''org.eclipse.swtbot.releng/readme.txt''] in the repository for instructions on how to build SWTBot.
 +
 
 +
== Contributing ==
 +
 
 +
Patches and contributions are always welcome! There are many general articles about contributing to Eclipse projects:
 +
 
 +
* [http://blog.hantsuki.org/2008/03/07/how-to-contribute-to-eclipse-projects/ How to contribute to Eclipse projects...]
 +
* [http://www.eclipsezone.com/eclipse/forums/t99339.html Getting started with Eclipse plug-ins: contributing to Eclipse]
 +
* [http://www.eclipse.org/articles/article.php?file=Article-How-to-Fix-a-Bug-in-Eclipse/index.html How to Fix a Bug in Eclipse]
 +
 
 +
== See also ==
  
 
* {{SWTBotLink|Maintaining SWTBot Versions For Your Team|Maintaining SWTBot Versions For Your Team}}
 
* {{SWTBotLink|Maintaining SWTBot Versions For Your Team|Maintaining SWTBot Versions For Your Team}}
  
 
[[Category:Draft Documentation]]
 
[[Category:Draft Documentation]]

Revision as of 20:23, 10 November 2009


SWTBot
Website
Update Sites
Community
Mailing List
Forums/Newsgroups
IRC
Contribute
Open Bugzilla tickets
Open Gerrit reviews
Browse Source
Continuous Integration


Getting the source

The source code of the SWTBot project can be found in a eclipse.org Subversion repository:

svn co http://dev.eclipse.org/svnroot/technology/org.eclipse.swtbot/trunk/

Alternatively, you can use a git mirror of that repository:

git clone git://github.com/ketan/swtbot.git

You can also browse the repository using a web interface: SVN, Git

Building SWTBot

See org.eclipse.swtbot.releng/readme.txt in the repository for instructions on how to build SWTBot.

Contributing

Patches and contributions are always welcome! There are many general articles about contributing to Eclipse projects:

See also

Back to the top