vishnumkartha opened a new pull request, #7075: URL: https://github.com/apache/incubator-kie/pull/7075
When using `spring-boot-maven-plugin` to repackage a JAR in SpringBoot integration-test modules, the plugin by default **replaces the original artifact** with the fat repackaged JAR. This breaks downstream Maven builds that depend on the original (thin) JAR - for example, when another module or step tries to use the JAR as a dependency or classpath artifact. The fix is to configure the `repackage` goal with the `exec` classifier, which makes the plugin produce the fat JAR as a _secondary_ artifact (e.g., `*-exec.jar`) while keeping the original JAR as the primary Maven artifact. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
