Xavier
Xavier

Reputation: 323

Altering Eclipse build order

I'm using maven to build out my java projects which is shared between my team but because of eclipse build order my projects are built in an alphabetical order. Is there a file or specific place where I can alter this build order and push it out to my team?

Upvotes: 1

Views: 2077

Answers (1)

Stephan Herrmann
Stephan Herrmann

Reputation: 8178

Eclipse determines the build order from project dependencies. If you use m2e, Eclipse should understand the dependencies from pom.xml and list dependent projects under the "Maven Dependencies" node in the Package Explorer.

OTOH, if there were no dependencies between projects, why bother about build order?

Upvotes: 1

Related Questions