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 "JDT Core Committer FAQ"

Line 2: Line 2:
  
 
=== Who is this FAQ for? ===
 
=== Who is this FAQ for? ===
 
 
This FAQ is for the JDT/Core committers, and anyone who is in the process of acquiring commit rights on JDT/Core.
 
This FAQ is for the JDT/Core committers, and anyone who is in the process of acquiring commit rights on JDT/Core.
  
 
=== What is this FAQ about? ===
 
=== What is this FAQ about? ===
 
 
This FAQ is about the rules that JDT/Core committers follow when developing the JDT/Core component.  
 
This FAQ is about the rules that JDT/Core committers follow when developing the JDT/Core component.  
  
 
=== How do I contribute to this FAQ? ===
 
=== How do I contribute to this FAQ? ===
 
 
Simply edit this page. You will need to [http://bugs.eclipse.org/bugs/index.cgi?GoAheadAndLogIn=1 log in] using your bugzilla username and password to gain access.  If you don't have a Bugzilla account, you can [http://bugs.eclipse.org/bugs/createaccount.cgi create a new one].
 
Simply edit this page. You will need to [http://bugs.eclipse.org/bugs/index.cgi?GoAheadAndLogIn=1 log in] using your bugzilla username and password to gain access.  If you don't have a Bugzilla account, you can [http://bugs.eclipse.org/bugs/createaccount.cgi create a new one].
  
Line 16: Line 13:
  
 
=== Where is the JDT/Core code ? ===
 
=== Where is the JDT/Core code ? ===
 
 
All the JDT/Core code is in the Eclipse CVS repository. The JDT/Core projects are:
 
All the JDT/Core code is in the Eclipse CVS repository. The JDT/Core projects are:
 
* org.eclipse.jdt.compiler.tool
 
* org.eclipse.jdt.compiler.tool
Line 34: Line 30:
 
* Repository path: /cvsroot/eclipse
 
* Repository path: /cvsroot/eclipse
 
* Use default port
 
* Use default port
 +
 +
=== What comment should I associate with a commit? ===
 +
The comment of a commit should be of the form: <branch> - <bug number with ptional comments>, e.g.
 +
* HEAD - 1234567
 +
* R3_3_maintenance - fix for 123678 (with tests)
  
 
== Bugzilla ==
 
== Bugzilla ==
  
 
=== What bugs are currently opened against JDT/Core? ===
 
=== What bugs are currently opened against JDT/Core? ===
 
 
[https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&classification=Eclipse&product=JDT&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&resolution=LATER&resolution=REMIND&resolution=---&emailtype1=substring&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0= Bugs opened and not resolved yet.]
 
[https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&classification=Eclipse&product=JDT&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&resolution=LATER&resolution=REMIND&resolution=---&emailtype1=substring&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0= Bugs opened and not resolved yet.]
  

Revision as of 07:01, 31 August 2007

Meta FAQ

Who is this FAQ for?

This FAQ is for the JDT/Core committers, and anyone who is in the process of acquiring commit rights on JDT/Core.

What is this FAQ about?

This FAQ is about the rules that JDT/Core committers follow when developing the JDT/Core component.

How do I contribute to this FAQ?

Simply edit this page. You will need to log in using your bugzilla username and password to gain access. If you don't have a Bugzilla account, you can create a new one.

Coding

Where is the JDT/Core code ?

All the JDT/Core code is in the Eclipse CVS repository. The JDT/Core projects are:

  • org.eclipse.jdt.compiler.tool
  • org.eclipse.jdt.compiler.tool.tests
  • org.eclipse.jdt.core
  • org.eclipse.jdt.core.tests.builder
  • org.eclipse.jdt.core.tests.compiler
  • org.eclipse.jdt.core.tests.model
  • org.eclipse.jdt.core.tests.performance

How do I create a CVS repository connection?

The following information must be used to create a CVS repository connection:

  • Connection type: extssh (or pserver if you are not yet a committer and don't have an Eclipse account)
  • User: <your id> (or anonymous if you are not yet a committer and don't have an Eclipse account)
  • Password: <your password>
  • Host: dev.eclipse.org
  • Repository path: /cvsroot/eclipse
  • Use default port

What comment should I associate with a commit?

The comment of a commit should be of the form: <branch> - <bug number with ptional comments>, e.g.

  • HEAD - 1234567
  • R3_3_maintenance - fix for 123678 (with tests)

Bugzilla

What bugs are currently opened against JDT/Core?

Bugs opened and not resolved yet.

Links

Back to the top