Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
3.0-alpha-1
-
None
Description
For a POM snippet like
<executions> <execution> <id>test-1</id> <phase>validate</phase> <goals> <goal>one</goal> </goals> </execution> <execution> <id>test-2</id> <phase>validate</phase> <goals> <goal>two</goal> </goals> </execution> </executions>
the effective goal execution order is either [one, two] or [two, one] depending on the usage of <pluginManagement> for the plugin in question.