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 "Gyrex/Contributor Guide/Committer Resources"

Line 1: Line 1:
This page lists useful tips and articles for developers interested in working with/at the Gyrex code base.
+
This article lists useful tips and articles for developers interested in working with/at the Gyrex code base.
 
+
  
 
== Source Control ==
 
== Source Control ==
 
 
Our regular (primary) SCM is CVS. We plan to migrate to Git after our 1.0 release for Eclipse Indigo (~Aug 2011).
 
Our regular (primary) SCM is CVS. We plan to migrate to Git after our 1.0 release for Eclipse Indigo (~Aug 2011).
  
 
* Anonymous CVS Checkout
 
* Anonymous CVS Checkout
 
 
  cvs -d :pserver:anonymous@dev.eclipse.org:/cvsroot/technology co org.eclipse.gyrex
 
  cvs -d :pserver:anonymous@dev.eclipse.org:/cvsroot/technology co org.eclipse.gyrex
  
 
* Comitter CVS Checkout
 
* Comitter CVS Checkout
 
 
  export CVS_RSH=/bin/ssh
 
  export CVS_RSH=/bin/ssh
 
  cvs -d :ext:your_committer_id@dev.eclipse.org:/cvsroot/technology co org.eclipse.gyrex
 
  cvs -d :ext:your_committer_id@dev.eclipse.org:/cvsroot/technology co org.eclipse.gyrex
  
 
* Git Mirror  
 
* Git Mirror  
 
 
  git://dev.eclipse.org/org.eclipse.gyrex/org.eclipse.gyrex.git
 
  git://dev.eclipse.org/org.eclipse.gyrex/org.eclipse.gyrex.git
  
Line 23: Line 18:
  
 
=== API ===
 
=== API ===
 
 
The Eclipse Gyrex Project follows the Eclipse Project API guidelines. Please look at [[API Central]] and read the resources carefully. In case of any questions please don't hesitate to ask on [https://dev.eclipse.org/mailman/listinfo/gyrex-dev gyrex-dev@eclipse.org mailing list].
 
The Eclipse Gyrex Project follows the Eclipse Project API guidelines. Please look at [[API Central]] and read the resources carefully. In case of any questions please don't hesitate to ask on [https://dev.eclipse.org/mailman/listinfo/gyrex-dev gyrex-dev@eclipse.org mailing list].

Revision as of 06:04, 19 February 2011

This article lists useful tips and articles for developers interested in working with/at the Gyrex code base.

Source Control

Our regular (primary) SCM is CVS. We plan to migrate to Git after our 1.0 release for Eclipse Indigo (~Aug 2011).

  • Anonymous CVS Checkout
cvs -d :pserver:anonymous@dev.eclipse.org:/cvsroot/technology co org.eclipse.gyrex
  • Comitter CVS Checkout
export CVS_RSH=/bin/ssh
cvs -d :ext:your_committer_id@dev.eclipse.org:/cvsroot/technology co org.eclipse.gyrex
  • Git Mirror
git://dev.eclipse.org/org.eclipse.gyrex/org.eclipse.gyrex.git


Policies & Guidelines

API

The Eclipse Gyrex Project follows the Eclipse Project API guidelines. Please look at API Central and read the resources carefully. In case of any questions please don't hesitate to ask on gyrex-dev@eclipse.org mailing list.

Back to the top