+1 vote
in Maven - Coalescing Pipeline by
How to perform a force update in Maven?

1 Answer

0 votes
by

A forced update in Maven can be done with the following commands:

mvn clean install –U

-U is used for forcing a Maven update. However, the dependencies that are release based cannot be performed in this manner.

...