blob: 3b613a7281bd46a7ba42f3bce62d18f5ec23408c [file] [log] [blame]
<project>
<modelVersion>4.0.0</modelVersion>
<name>Maven Integration Test :: it0075</name>
<groupId>org.apache.maven.its.it0075</groupId>
<artifactId>maven-it-it0075</artifactId>
<description>Verify that direct invocation of a mojo from the command line still
results in the processing of modules included via profiles.</description>
<version>1.0</version>
<packaging>pom</packaging>
<modules>
<module>sub1</module>
</modules>
<profiles>
<profile>
<id>include-sub2</id>
<activation>
<property>
<name>activate</name>
</property>
</activation>
<modules>
<module>sub2</module>
</modules>
</profile>
</profiles>
</project>