Skip to content

Commit

Permalink
[#3514] Skip install Maven stage for CLI module
Browse files Browse the repository at this point in the history
Maven 3.9.x fails to run the install stage for the CLI module because
the original jar artifact created during the build stage is being
renamed by the Quarkus plugin.
However, none of the artifact(s) being built is needed by any other
module so there is no need to install any of them. Simply skipping the
install stage thus fixes the problem.

Fixes #3514
  • Loading branch information
sophokles73 committed Jul 19, 2023
1 parent 944883d commit 96218ec
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
deploy this module's artifacts to the configured project repository
-->
<skipStaging>true</skipStaging>
<maven.install.skip>true</maven.install.skip>
<maven.source.skip>true</maven.source.skip>
<maven.javadoc.skip>true</maven.javadoc.skip>
<gpg.skip>true</gpg.skip>
Expand Down

0 comments on commit 96218ec

Please sign in to comment.