In parent POM, I have:
 <pluginManagement>
            <plugin>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.5</version>
                <executions>
                    <execution>
                       <id>execution 1</id>
                       ...
                    </execution>
                    <execution>
                       <id>execution 2</id>
                       ...
                    </execution>
                    <execution>
                       <id>execution 3</id>
                       ...
                    </execution>
                </executions>
            </plugin>
        <pluginManagement>
My questions are:
- Is it possible to disable some 
<execution>in sub-projects, e.g, only runexecution 3and skip 1 and 2? - Is it possible to totally override the executions in sub-projects, e.g. I have an 
exection 4in my sub-projects and I want only run thisexecutionand never run execution 1,2,3 in parent POM.