o adding IT it0103

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@465876 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-19 20:51:21 +00:00
parent d796ef5ebb
commit 9e3cf99086
4 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,12 @@
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.maven.it0103</groupId>
<artifactId>level1</artifactId>
<version>1</version>
</parent>
<groupId>org.apache.maven.it0103</groupId>
<artifactId>level3</artifactId>
<version>1</version>
</project>

View File

@ -0,0 +1,14 @@
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.maven.it0103</groupId>
<artifactId>level1</artifactId>
<version>1</version>
</parent>
<artifactId>level2</artifactId>
<packaging>pom</packaging>
<modules>
<module>level3</module>
</modules>
</project>

View File

@ -0,0 +1,14 @@
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.maven.it0103</groupId>
<artifactId>root</artifactId>
<version>1</version>
</parent>
<artifactId>level1</artifactId>
<packaging>pom</packaging>
<modules>
<module>level2</module>
</modules>
</project>

View File

@ -0,0 +1,14 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.it0103</groupId>
<artifactId>root</artifactId>
<description>Verify that multimodule builds where one project references another as
a parent can build, even if that parent is not correctly referenced by
&lt;relativePath/&gt; and is not in the local repository. [MNG-2196]</description>
<version>1</version>
<packaging>pom</packaging>
<modules>
<module>level1</module>
</modules>
</project>