Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 1.37 KB

File metadata and controls

37 lines (22 loc) · 1.37 KB

Contributing to the Agent Maintenance Plugin

Plugin source code is hosted on GitHub. New feature proposals and bug fix proposals should be submitted as GitHub pull requests. Your pull request will be evaluated by the Jenkins job.

Before submitting your change, please assure that you've added tests that verify the change.

Code Coverage

Code coverage reporting is available as a maven target. Please try to improve code coverage with tests when you submit.

  • mvn -P enable-jacoco clean install jacoco:report to report code coverage

Static Analysis

Please don't introduce new spotbugs output.

  • mvn spotbugs:check to analyze project using Spotbugs
  • mvn spotbugs:gui to review report using GUI

Code Formatting

Code formatting is checked by checkstyle. If the formatting is not correct, the build will fail. The rules are basically the Google Java formatting rules with some smaller relaxations.

File format

Files in the repository are in Unix format (LF line terminators). Please continue using Unix file format for consistency.

Reporting Issues

Report issues in the Jenkins issue tracker.