Skip to content

chore: CONTRIBUTING.md dep #118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 6, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,14 @@ Use `mvn --projects {MODULE PATH} clean verify` to test/audit/lint just a single

As described in the [README](./README.md), this project uses release-please, and semantic versioning.
Breaking changes should be identified by using a semantic PR title.

## Dependencies

Keep dependencies to a minimum, especially `compile` dependencies. Do not include dependencies specific to your module in the parent, add them to your module's `POM.xml`.
The Java-SDK should be a _provided_ dependency of your module, the parent POM takes care of this automatically.
Keep in mind, one version of the Java-SDK is used for all modules.

### VS Code config
## VS Code config

To use vscode, install the standard [Java language support extension by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java).

Expand Down