hi all,
i have a multi module project.
Some of the module have to use a configuration of plugin, 2 of them do not
have.
The parent handles the configuration in a profile :
<profiles>
<profile>
<id>integration</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>env</name>
<value>integration</value>
</property>
</activation>
<build>
<filters>
<filter></filter>
</filters>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.objectweb.petals</groupId>
<artifactId>maven-petals-plugin</artifactId>
<version>${maven-petals-plugin.version
}</version>
<extensions>true</extensions>
<inherited>false</inherited>
<configuration>
<verbose>true</verbose>
....
But some of module must not use this configuration of plugin to achieve
their goals.
How can i 'cut' the heritage in the son's pom ??
--
Sébastien.