Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 1005 Bytes

CONTRIBUTING.md

File metadata and controls

54 lines (37 loc) · 1005 Bytes

Contributing to resurfaceio-binfiles

© 2016-2024 Graylog, Inc.

Coding Conventions

Our code style is whatever IntelliJ IDEA does by default, with the exception of allowing lines up to 130 characters. If you don't use IDEA, that's ok, but your code may get reformatted.

Git Workflow

Initial setup:

git clone [email protected]:resurfaceio/binfiles.git resurfaceio-binfiles
cd resurfaceio-binfiles

Test and package:

mvn package

Committing changes:

git add -A
git commit -m "#123 Updated readme"       (123 is the GitHub issue number)
git pull --rebase                         (avoid merge bubbles)
git push origin master

Check if any newer dependencies are available:

mvn versions:display-dependency-updates

Release Process

Push this new version to CloudSmith:

mvn deploy

Tag release version:

git tag v3.5.(BUILD_NUMBER)
git push origin v3.5.x --tags

Start the next version by incrementing the version number. (located in pom.xml)