L.Sorry
L.Sorry

Reputation: 41

how to show maven reactor build order only?

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

Answers (1)

Sukhpal Singh
Sukhpal Singh

Reputation: 2278

No, but you can execute only the first step in the life-cycle: mvn validate

Upvotes: 5

Related Questions