| Version 8 (modified by , 9 years ago) ( diff ) |
|---|
How to become a CIVL developer
- If you are interested in contributing to the development of CIVL, send an email to civl-users@… expressing your interest, and we'll get back to you. We can use help in many areas, including testing and creating new examples, and we are very open to new ideas on all aspects of the project.
How to make a change to CIVL
- Follow these steps:
- Talk with the developers first, by sending email to civl-dev@…. Explain what you want to do, and listen to the feedback.
- Create a new branch for the new features you want to add into CIVL. Name your branch anything you like and create it in the branches directory of the repository.
- Proceed with development of your branch, committing as often as you like. Periodically, merge changes from the trunk into your branch, and resolve any conflicts that result. This will make it much easier to integrate your branch into the trunk later on.
- Create unit tests and system tests for your new code, making sure they provide 100% statement coverage of your code, at a minimum. You may also need to make changes to existing tests.
- Have at least one other CIVL developer review your code. Your reviewer will make suggestions for improvements. Iterate until both of you are satisfied.
- When you feel your branch is complete, send an email to civl-dev@…. In the email, give the name of your branch and summarize the changes/additions you have made. We will then schedule a CIVL meeting where your contribution will be discussed. All developers will be given some time to review your branch before the meeting.
- At the meeting, your branch will either be accepted or it will be rejected with suggestions for further changes. If accepted, it will be merged into the trunk. Only the lead developers have permission to do this merge. If further changes are suggested, a future meeting will be scheduled to discuss again.
- A CIVL contributor must follow CIVL's coding standard:
- Coding Standards
- Coding Standards for CIVL models
- We recommend to use Eclipse IDE to write CIVL code, remember to set your Java code formatter as "built-in 2.1" in your Eclipse.
Using SVN
- CIVL uses SVN to manage source code. CIVL SVN repository is structured as: trunk, branches and tags.
- To create a new branch from the trunk@rev to branches, "svn copy URL_trunk@rev target".
- To keep being updated with the latest trunk, "svn merge URL_trunk target".
- To merge your branch back to the trunk, "svn merge source URL_trunk".
Note:
See TracWiki
for help on using the wiki.
