Author: jdcasey Date: Mon Apr 3 15:52:17 2006 New Revision: 391165 URL: http://svn.apache.org/viewcvs?rev=391165&view=rev Log: [MNG-2196] Adding IT that mocks up Vincent's situation in cargo, with a dislocated parent reference that should still be present in the multimodule build.
Added: maven/components/branches/maven-2.0.x/maven-core-it/it0103/ maven/components/branches/maven-2.0.x/maven-core-it/it0103/goals.txt (with props) maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/ maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/level2/ maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/level2/level3/ maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/level2/level3/pom.xml (with props) maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/level2/pom.xml (with props) maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/pom.xml (with props) maven/components/branches/maven-2.0.x/maven-core-it/it0103/pom.xml (with props) Modified: maven/components/branches/maven-2.0.x/maven-core-it/README.txt maven/components/branches/maven-2.0.x/maven-core-it/integration-tests.txt Modified: maven/components/branches/maven-2.0.x/maven-core-it/README.txt URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-core-it/README.txt?rev=391165&r1=391164&r2=391165&view=diff ============================================================================== --- maven/components/branches/maven-2.0.x/maven-core-it/README.txt (original) +++ maven/components/branches/maven-2.0.x/maven-core-it/README.txt Mon Apr 3 15:52:17 2006 @@ -273,6 +273,10 @@ it0102: Test that <activeByDefault/> calculations for profile activation only use profiles defined in the POM. [MNG-2136] +it0103: Verify that multimodule builds where one project references another as + a parent can build, even if that parent is not correctly referenced by + <relativePath/> and is not in the local repository. [MNG-2196] + ------------------------------------------------------------------------------- - generated sources Modified: maven/components/branches/maven-2.0.x/maven-core-it/integration-tests.txt URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-core-it/integration-tests.txt?rev=391165&r1=391164&r2=391165&view=diff ============================================================================== --- maven/components/branches/maven-2.0.x/maven-core-it/integration-tests.txt (original) +++ maven/components/branches/maven-2.0.x/maven-core-it/integration-tests.txt Mon Apr 3 15:52:17 2006 @@ -1,3 +1,4 @@ +it0103 it0102 it0101 it0100 Added: maven/components/branches/maven-2.0.x/maven-core-it/it0103/goals.txt URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-core-it/it0103/goals.txt?rev=391165&view=auto ============================================================================== --- maven/components/branches/maven-2.0.x/maven-core-it/it0103/goals.txt (added) +++ maven/components/branches/maven-2.0.x/maven-core-it/it0103/goals.txt Mon Apr 3 15:52:17 2006 @@ -0,0 +1 @@ +package Propchange: maven/components/branches/maven-2.0.x/maven-core-it/it0103/goals.txt ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/components/branches/maven-2.0.x/maven-core-it/it0103/goals.txt ------------------------------------------------------------------------------ svn:keywords = "Author Date Id Revision" Added: maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/level2/level3/pom.xml URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/level2/level3/pom.xml?rev=391165&view=auto ============================================================================== --- maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/level2/level3/pom.xml (added) +++ maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/level2/level3/pom.xml Mon Apr 3 15:52:17 2006 @@ -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> Propchange: maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/level2/level3/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/level2/level3/pom.xml ------------------------------------------------------------------------------ svn:keywords = "Author Date Id Revision" Added: maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/level2/pom.xml URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/level2/pom.xml?rev=391165&view=auto ============================================================================== --- maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/level2/pom.xml (added) +++ maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/level2/pom.xml Mon Apr 3 15:52:17 2006 @@ -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> Propchange: maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/level2/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/level2/pom.xml ------------------------------------------------------------------------------ svn:keywords = "Author Date Id Revision" Added: maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/pom.xml URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/pom.xml?rev=391165&view=auto ============================================================================== --- maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/pom.xml (added) +++ maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/pom.xml Mon Apr 3 15:52:17 2006 @@ -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> Propchange: maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/components/branches/maven-2.0.x/maven-core-it/it0103/level1/pom.xml ------------------------------------------------------------------------------ svn:keywords = "Author Date Id Revision" Added: maven/components/branches/maven-2.0.x/maven-core-it/it0103/pom.xml URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-core-it/it0103/pom.xml?rev=391165&view=auto ============================================================================== --- maven/components/branches/maven-2.0.x/maven-core-it/it0103/pom.xml (added) +++ maven/components/branches/maven-2.0.x/maven-core-it/it0103/pom.xml Mon Apr 3 15:52:17 2006 @@ -0,0 +1,11 @@ +<project> + <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.maven.it0103</groupId> + <artifactId>root</artifactId> + <version>1</version> + <packaging>pom</packaging> + + <modules> + <module>level1</module> + </modules> +</project> Propchange: maven/components/branches/maven-2.0.x/maven-core-it/it0103/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/components/branches/maven-2.0.x/maven-core-it/it0103/pom.xml ------------------------------------------------------------------------------ svn:keywords = "Author Date Id Revision"