I have a parent pom that contains several children modules. In one of the
child modules I have the following maven-clean-plugin configured:

<plugin>
                <artifactId>maven-clean-plugin</artifactId>
                <executions>
                    <execution>
                        <id>Delete JAX-WS Generated Client Sources</id>
                        <goals>
                            <goal>clean</goal>
                        </goals>
                        <phase>clean</phase>
                        <configuration>
                            <filesets>
                                <fileset>
                                   
<directory>${java.src.directory}/com/heartlab/ws/services</directory>
                                        <includes>
                                            <include>**/*.*</include>
                                        </includes>
                                       
<followSymlinks>false</followSymlinks>
                                </fileset>
                            </filesets>                            
                        </configuration>
                    </execution>
                </executions>
            </plugin>

When I execute the clean phase via the child module POM it deletes the
fileset accordingly. When I call the clean phase from the parent POM it
never calls the child modules maven-clean-plugin fileset. Why is this? Am I
missing something?
-- 
View this message in context: 
http://www.nabble.com/Parent-POM-clean-issue-tf4497694s177.html#a12826835
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to