mirror of https://github.com/apache/maven.git
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:
parent
c5b5b8f9f5
commit
833a237654
|
@ -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>
|
|
@ -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>
|
|
@ -0,0 +1,6 @@
|
|||
package org.apache.maven.it0075;
|
||||
|
||||
public class Person
|
||||
{
|
||||
private String name;
|
||||
}
|
|
@ -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>
|
|
@ -0,0 +1,6 @@
|
|||
package org.apache.maven.it0075;
|
||||
|
||||
public class Person2
|
||||
{
|
||||
private String name;
|
||||
}
|
Loading…
Reference in New Issue