HJW
HJW

Reputation: 23453

How to change reactor build order of Maven built projects

How do i change the build order to allow [Object] to be built ahead of [EJB]?

[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO] 
[INFO] Car Booking Management Microsite Application
[INFO] Car Booking Management Microsite Application [EJB]
[INFO] Car Booking Management Microsite Application [Object]
[INFO] Car Booking Management Microsite Application [Web]
[INFO] Car Booking Management Microsite Application [DAO]
[INFO] Car Booking Management Microsite Application [EAR]

Upvotes: 0

Views: 1864

Answers (1)

ptyx
ptyx

Reputation: 4164

The easiest way is to add a dependency from EJB to Object.

But if that dependency doesn't exist, why do you care which one builds first?

Upvotes: 3

Related Questions