Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
3.0-alpha-3
-
None
Description
The Selenium Maven Plugin declares
<plugin> <groupId>org.codehaus.groovy.maven</groupId> <artifactId>gmaven-plugin</artifactId> <executions> <execution> <goals> <goal>generateStubs</goal> <goal>compile</goal> <goal>generateTestStubs</goal> <goal>testCompile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <executions> <execution> <goals> <goal>descriptor</goal> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin>
i.e. with the gmaven-plugin preceeding the maven-plugin-plugin, yet trunk executes maven-plugin-plugin:helpmojo first, causing it to fail due to "No mojo definitions". The mojos get generated during gmaven-plugin:generateStubs.
Attachments
Issue Links
- relates to
-
MNG-2258 Wrong execution order of plugins in same phase
-
- Closed
-
-
MNG-4344 [regression] Managed executions of plugins introduced by default lifecycle bindings execute before explicitly defined plugins
-
- Closed
-
-
MNG-4345 [regression] Plugin executions contributed by default lifecycle mapping execute after other plugin executions bound to the same phase
-
- Closed
-