vert-x3 / vertx-parent

The base parent pom for Vert.x projects
Apache License 2.0
8 stars 17 forks source link

Use jar-no-fork and test-jar-no-fork goals instead of jar and test-jar for maven-source-plugin #13

Closed vietj closed 7 years ago

tsegismont commented 7 years ago

Out of curiosity, what's the motivation for this?

jponge commented 7 years ago

@vietj Like @tsegismont I'm curious

vietj commented 7 years ago

the jar goal runs a new maven lifecycle and thus the bsc plugin is executed again during the package phase, this plugin is already executed in the generate-source phase.

see https://gist.github.com/vietj/c3d6e95b0eee2f15d92e4ed68070e5ed (in verbose mode though)

so it makes simply the build faster and less verbose.