You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/CONTRIBUTING.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,15 +12,15 @@ mvn test # Run tests
12
12
mvn package # Take the compiled code and package it in its distributable format, e.g. JAR.
13
13
mvn verify # Run any checks to verify the MVN package is valid and meets quality criteria.
14
14
mvn verify -fae -DskipITs=false # Run Integration tests to verify the MVN package is valid and meets quality criteria.
15
-
mvn install # Install the package into the local repository.
15
+
mvn install # Install the package into the local maven repository cache.
16
16
```
17
17
18
18
# Pull Requests
19
19
20
20
If you want to contribute to the repository, here's a quick guide:
21
21
1. Fork the repository
22
22
1. Edit the [`config.properties`](../common/src/test/resources/config.properties) file to add your service credentials to the appropriate fields.
23
-
2. develop and test your code changes, gradle: `mvn verify -fae -DskipITs=false`.
23
+
2. develop and test your code changes: `mvn verify -fae -DskipITs=false`.
24
24
* Run `checkstyle`: `mvn checkstyle:check`. 🏁
25
25
* Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change.
26
26
* Check for unnecessary whitespace with git diff --check before committing.
0 commit comments