Reputation: 41
As we all have known, use mvn clean package -DskipTests
command, we will get a Reactor Build Order
of the maven project. It's very important to use -pl
in a large software baseed on multi-module. It costs 10 min to publish our project in jenkins, ^_^. It costs 4 min With -pl now. I only want to show the reactor build order, just like mvn -v
. Using mvn clean
is ok, but it will do something to current project. Can anyone know ?
Upvotes: 3
Views: 1579
Reputation: 2278
No, but you can execute only the first step in the life-cycle: mvn validate
Upvotes: 5