o adding IT it0075

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@465849 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-19 20:48:08 +00:00
parent c5b5b8f9f5
commit 833a237654
5 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,28 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.it</groupId>
<artifactId>maven-core-it0075-root</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>

View File

@ -0,0 +1,11 @@
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.maven.it</groupId>
<artifactId>maven-core-it0075-root</artifactId>
<version>1.0</version>
</parent>
<artifactId>maven-core-it0075-sub1</artifactId>
</project>

View File

@ -0,0 +1,6 @@
package org.apache.maven.it0075;
public class Person
{
private String name;
}

View File

@ -0,0 +1,11 @@
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.maven.it</groupId>
<artifactId>maven-core-it0075-root</artifactId>
<version>1.0</version>
</parent>
<artifactId>maven-core-it0075-sub2</artifactId>
</project>

View File

@ -0,0 +1,6 @@
package org.apache.maven.it0075;
public class Person2
{
private String name;
}