Skip to content
Sean Barbeau edited this page Apr 22, 2020 · 23 revisions

OneBusAway is open-source software, which means we'd love to have developers like you get involved by working with the code and contributing changes. This document is a general guide to working with OneBusAway source-code. Note that some individual OneBusAway projects and modules may have more specific developer documentation as well.

Individual Contributor License Agreement (ICLA)

To ensure that the app source code remains fully open-source under a common license, we require that contributors sign an electronic ICLA before contributions can be merged.

Code of Conduct

This project adheres to a Code of Conduct. By participating, you are expected to honor this code.

Getting Help

If you have trouble working with OneBusAway source-code, there are a couple of ways to get help.

First, check out our Troubleshooting page to see if we have a known solution.

You can also ask questions in the following place:

Working with the Code

All the source-code for the various OneBusAway modules, libraries, and applications are hosted in a number of Git repositories belonging to the OneBusAway organization on GitHub:

https://github.com/OneBusAway/

For a more general overview of the various projects that make up OneBusAway, check out our Features page.

Generally, we use the following technologies for development and project management:

  • GitHub and Git for source-code versioning.
  • Apache Maven for managing the build.
  • Eclipse for working with code. You are of course free to edit code any which way you like, but much of the documentation will be geared towards Eclipse.

NOTE: If you're thinking about making changes/improvements to the OneBusAway code, we STRONGLY recommend you create your own copy of the project on Github by creating a Github account, and then clicking the Fork button in the upper right-hand corner of the onebusaway-application-modules page (or the page of the project you're interested in modifying). This will make it easier for you to contribute any changes (via "Pull Requests") back to the main OBA project later. See below for more on contributing changes.

For specific instructions on importing OneBusAway projects into Eclipse, check out Import Source-Code into Eclipse

Contributing Changes

As mentioned above, we recommend that you fork the main OBA project by clicking on the Fork button in the upper right-hand corner of the onebusaway-application-modules page so you can use Github's Pull Request feature to submit changes.

You can contribute code changes in a number of ways:

  • Send a GitHub Pull Request (Preferred, since it makes it easier to do code-reviews).
  • Send a patch over the mailing list.

When you are submitting code to OneBusAway, here are a few guidelines to go by:

  • If you're looking at fixing a few specific problems (e.g., to fix a bug), we suggest you create a Git branch in your repository for each specific fix. This allows you to submit multiple pull requests at a time, and separates commits you don't want to share (on your master branch) with ones you do. See this page for a general suggested process.
  • Try to keep your copy of OBA in sync with the main OBA repository. This reduces the chance of conflicts between the two copies of code. See the "Keeping updated" section on this page for details.
  • For each feature request, bug, or change, someone should create an issue in the GitHub issue tracker for the appropriate project.
  • For each commit to the repository, reference the issue number in the commit message. Something like Issue #5: Adding this cool feature. This will automatically link your commit to the issue and make it easier to track changes to the codebase.
  • Code style: check out the Code Style documentation for details on how configure your IDE to match the OneBusAway code-style conventions. In general, try to match the existing code style when adding new code.
  • Write unit tests.
  • Don't break the build. You can run mvn verify to run all the unit tests and checks for a Maven project to verify that your changes haven't broken anything. Also keep an eye on our Continuous Integration Server.
  • Code reviews. If you are new to OneBusAway development or if you are working on a core piece of OneBusAway, it's a good idea to get someone to do a codereview of your change before committing it to the master repository. GitHub makes codereviews pretty simple with their Pull Request feature.

Commit Access

What does it take to get commit access to a project?

  • Make yourself know to the community by introducing yourself on the mailing list.
  • Have two or more changes to the code base submitted and accepted. They don't need to be big changes, but just enough to give us an idea of how you work with the code.

For more info on the rights and responsibilities of commit access, check out Project Governance.

Licensing

All OneBusAway source is provided under the Apache 2.0 license.

OneBusAway is open source software in order to encourage the contributions of others to making OBA better, and also to reflect the contributions of the open source community at large in the wealth of existing code, tools, and frameworks that OBA builds on.