I have a multi-module build. In one of the sub-modules I use the
maven-clean-plugin in the pom.xml as follows:

      <plugin> 
        <artifactId>maven-clean-plugin</artifactId> 
        <configuration>
          <filesets>
            <fileset>
              <directory>WebContent/WEB-INF/lib</directory>
              <includes>
                <include>*</include>
              </includes>
            </fileset>
          </filesets>
        </configuration>
      </plugin>

The WebContent/WEB-INF/lib folder gets cleaned, when I call mvn clean on the
sub-module. But it does not get cleaned when I call mvn clean on the main
module.

Should I file a JIRA issue? Or am I making a mistake? Is there any
workaround available?

Thanks,
Arne
-- 
View this message in context: 
http://www.nabble.com/-M2--maven-clean-plugin-and-multi-module-build-tf2177477.html#a6020540
Sent from the Maven - Users forum at Nabble.com.


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

Reply via email to