-
Notifications
You must be signed in to change notification settings - Fork 10
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
Refactor maven-assembly-plugin so no uber jar is created. #27
Refactor maven-assembly-plugin so no uber jar is created. #27
Conversation
Signed-off-by: Owen <[email protected]>
0218bcf
to
16fb9cd
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One nit. LGTM otherwise.
README.md
Outdated
@@ -9,7 +9,7 @@ The implementation is currently still in progress. | |||
## Build | |||
|
|||
```shell | |||
mvn package assembly:single | |||
mvn package |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mvn package | |
mvn package |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
Signed-off-by: Owen <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks for the PR
This PR aims to deal with the following issue #24.
Previously,
metrics-reporter-1.0.0-SNAPSHOT-jar-with-dependencies.jar
was created withmaven-assembly-plugin
. To keep in line with other Strimzi projects, it was decided to create a dist.xml file and then normally produce the regular JARs and if needed a ZIP / TGZ archive with all the required dependencies.