Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Gyrex/Contributor Guide/Committer Resources

This page 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