Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Latest commit

 

History

History
48 lines (35 loc) · 1.74 KB

CONTRIBUTING.md

File metadata and controls

48 lines (35 loc) · 1.74 KB

Contributing to the microservices dashboard

The microservices dashboard is released under the Apache 2.0 license. If you would like to contribute something, or simply want to work with the code, this document should help you to get started.

Code of conduct

This project adheres to the Contributor Covenant code of conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to andreas dot evers at ordina dot be.

Code conventions and housekeeping

None of these is essential for a pull request, but they will all help

  • Make sure all new .java files to have a simple Javadoc class comment with at least an @author tag identifying you, and preferably at least a paragraph on what the class is for.
  • Add the ASF license header comment to all new .java files (copy from existing files in the project)
  • Add yourself as an @author to the .java files that you modify substantially (more than cosmetic changes).
  • Add some Javadocs
  • Add unit tests that covers and new or modified functionality
  • Whenever possible, please rebase your branch against the current master (or other target branch in the main project).
  • When writing a commit message please follow these conventions. Also, if you are fixing an existing issue please add Fixes gh-nnn at the end of the commit message (where nnn is the issue number).

Working with the code

Building from source

To build the source you will need Java 8 or later. The code is built with Maven:

$ ./mvn install

Importing into Eclipse

The project can be imported into Eclipse using File -> Import… and then selecting Maven projects.