Skip to content

Latest commit

 

History

History
96 lines (68 loc) · 4.03 KB

CONTRIBUTING.md

File metadata and controls

96 lines (68 loc) · 4.03 KB

Guidelines for contributing to Infinispan

Contributions from the community are essential in keeping Infinispan strong and successful.

This guide focuses on how to contribute back to Infinispan using GitHub pull requests. If you need help with cloning, compiling or setting the project up in an IDE please refer to our Contributing Guide.

Legal

All original contributions to Infinispan are licensed under the ASL - Apache License, version 2.0 or later, or, if another license is specified as governing the file or directory being modified, such other license.

All contributions are subject to the Developer Certificate of Origin (DCO). The DCO text is also included verbatim in the dco.txt file in the root directory of the repository.

Getting Started

If you are just getting started with Git, GitHub and/or contributing to Infinispan there are a few prerequisite steps:

Create a test case

If you have opened an issue but are not comfortable enough to contribute code directly, creating a self contained test case is a good first step towards contributing.

Just fork the repository, build your test case and attach it as an archive to an issue

Create a topic branch

Create a "topic" branch on which you will work. The convention is to name the branch using the issue key. If there is not already an issue covering the work you want to do, create one. Assuming you will be working from the main branch and working on issue 12345:

git checkout -b 12345 origin/main

Code

Code away...

Formatting rules and style conventions

The Infinispan family projects share the same style conventions. Please refer to our Contributing Guide for more details.

Debugging

If you need to debug a test running inside a container, such as the tests in server/tests, you will need to start a debugger in listening/server mode on port 5005. Set any breakpoints you need and then launch the test with the org.infinispan.test.server.container.debug system property set to the index of the container you want to debug (usually 0 for the first container):

mvn verify -pl server/tests -Dit.test=RequestTracingIT -Dorg.infinispan.test.server.container.debug=0

Commit

  • Make commits of logical units.
  • Be sure to start the commit messages with the issue key you are working on. This allows easy cross-referencing on GitHub.
  • Avoid formatting changes to existing code as much as possible: they make the intent of your patch less clear.
  • Make sure you have added the necessary tests for your changes.
  • Run all the tests to assure nothing else was accidentally broken:
mvn verify

Prior to committing, if you want to pull in the latest upstream changes (highly appreciated by the way), please use rebasing rather than merging (see instructions below). Merging creates "merge commits" that really muck up the project timeline.

Add the original Infinispan repository as a remote repository called upstream:

git remote add upstream [email protected]:infinispan/infinispan.git

If you want to rebase your branch on top of the main branch, you can use the following git command:

git pull --rebase upstream main

Submit

  • Push your changes to a topic branch in your fork of the repository.
  • Initiate a pull request.
  • Cross-reference the issue key in the pull request description.