Details
-
Bug
-
Status: Closed
-
Critical
-
Resolution: Fixed
-
2.1.0
-
None
Description
I have following mentioned in my POM, but 'assemble-static-gh-pages' gets executed in the child POMs anyway. I see that its supposed to working as of - MNG-3286 but it ain't so. The build process in my project (http://github.com/imyousuf/smart-dao/tree) is incomplete just because of it.
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>${assembly.version}</version> <inherited>false</inherited> <executions> <!-- Assembly execution for aggregating gh-pages --> <execution> <id>assemble-static-gh-pages</id> <phase>compile</phase> <inherited>false</inherited> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/assembly/assemble-gh-pages.xml</descriptor> </descriptors> </configuration> </execution> <!-- Filter README --> <execution> <id>assemble-readme</id> <phase>process-resources</phase> <inherited>true</inherited> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/assembly/assemble-readme.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin>