You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jd...@apache.org on 2007/08/14 22:07:24 UTC

svn commit: r565892 - in /maven/core-integration-testing/trunk/core-integration-tests/src/test: java/org/apache/maven/integrationtests/ resources/ resources/it0126-testJarDependency/ resources/it0126-testJarDependency/client/ resources/it0126-testJarDe...

Author: jdcasey
Date: Tue Aug 14 13:07:22 2007
New Revision: 565892

URL: http://svn.apache.org/viewvc?view=rev&rev=565892
Log:
[MJAR-75] Adding integration-test for test-jar type.

Added:
    maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenIT0126TestJarDependency.java   (with props)
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/pom.xml   (with props)
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/src/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/src/main/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/src/main/java/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/src/main/java/org/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/src/main/java/org/apache/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/src/main/java/org/apache/maven/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/src/main/java/org/apache/maven/its/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/src/main/java/org/apache/maven/its/it0126/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/src/main/java/org/apache/maven/its/it0126/MyClient.java   (with props)
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/pom.xml   (with props)
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/java/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/java/org/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/java/org/apache/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/java/org/apache/maven/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/java/org/apache/maven/its/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/java/org/apache/maven/its/it0126/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/java/org/apache/maven/its/it0126/Component.java   (with props)
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/resources/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/resources/META-INF/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/resources/META-INF/ejb-jar.xml   (with props)
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/pom.xml   (with props)
Modified:
    maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/IntegrationTestSuite.java
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/pom.xml

Modified: maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/IntegrationTestSuite.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/IntegrationTestSuite.java?view=diff&rev=565892&r1=565891&r2=565892
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/IntegrationTestSuite.java (original)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/IntegrationTestSuite.java Tue Aug 14 13:07:22 2007
@@ -177,6 +177,7 @@
         // suite.addTestSuite( MavenIT0122ReactorDependencyResolutionTest.class ); -- MNG-3023
         // suite.addTestSuite( MavenIT0123SnapshotRangeRepositoryTest.class ); -- MNG-2994
         // suite.addTestSuite( MavenIT0124PomExtensionComponentOverrideTest.class ); -- MNG-2771
+        suite.addTestSuite( MavenIT0126TestJarDependency.class ); // MJAR-75
         return suite;
     }
 }

Added: maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenIT0126TestJarDependency.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenIT0126TestJarDependency.java?view=auto&rev=565892
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenIT0126TestJarDependency.java (added)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenIT0126TestJarDependency.java Tue Aug 14 13:07:22 2007
@@ -0,0 +1,55 @@
+package org.apache.maven.integrationtests;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import java.io.File;
+
+import org.apache.maven.it.Verifier;
+import org.apache.maven.it.util.ResourceExtractor;
+
+public class MavenIT0126TestJarDependency
+    extends AbstractMavenIntegrationTestCase
+{
+  
+    /**
+    * MNG-2871
+    */
+    public void testit0126()
+        throws Exception
+    {
+        File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/it0126-testJarDependency" );
+
+        Verifier verifier = new Verifier( testDir.getAbsolutePath() );
+        /* It is important to start from empty repository*/
+        verifier.deleteArtifact( "org.apache.maven.its.it0126", "parent", "1.0-SNAPSHOT", "pom" );
+        verifier.deleteArtifact( "org.apache.maven.its.it0126", "client", "1.0-SNAPSHOT", "jar" );
+        verifier.deleteArtifact( "org.apache.maven.its.it0126", "model",  "1.0-SNAPSHOT", "jar" );
+        verifier.deleteArtifact( "org.apache.maven.its.it0126", "model", "1.0-SNAPSHOT", "test-jar" );
+        
+	/* Not "install" or "higher" goal to repeat the bug */
+        verifier.executeGoal( "compile" ); 
+        	
+	verifier.verifyErrorFreeLog();
+        verifier.resetStreams();
+    }
+    
+    
+
+}

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenIT0126TestJarDependency.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenIT0126TestJarDependency.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/pom.xml?view=auto&rev=565892
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/pom.xml (added)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/pom.xml Tue Aug 14 13:07:22 2007
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.maven.its.it0126</groupId>
+        <artifactId>parent</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+    <artifactId>client</artifactId>
+    <name>Client</name>
+    <packaging>jar</packaging>
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.maven.its.it0126</groupId>
+            <artifactId>model</artifactId>
+            <type>test-jar</type>
+            <version>1.0-SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+</project>

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/src/main/java/org/apache/maven/its/it0126/MyClient.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/src/main/java/org/apache/maven/its/it0126/MyClient.java?view=auto&rev=565892
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/src/main/java/org/apache/maven/its/it0126/MyClient.java (added)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/src/main/java/org/apache/maven/its/it0126/MyClient.java Tue Aug 14 13:07:22 2007
@@ -0,0 +1,30 @@
+package org.apache.maven.its.it0126;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import org.apache.maven.its.it0126.Component;
+
+public class MyClient
+{
+
+    void func()
+    {
+    }
+}

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/src/main/java/org/apache/maven/its/it0126/MyClient.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/client/src/main/java/org/apache/maven/its/it0126/MyClient.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/pom.xml?view=auto&rev=565892
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/pom.xml (added)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/pom.xml Tue Aug 14 13:07:22 2007
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.maven.its.it0126</groupId>
+        <artifactId>parent</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+    <artifactId>model</artifactId>
+    <name>Model</name>
+    <packaging>jar</packaging>
+    <build>
+        <plugins>
+	    <plugin>
+    		<groupId>org.apache.maven.plugins</groupId>
+		<artifactId>maven-jar-plugin</artifactId>
+		<executions>
+    		    <execution>
+        		<goals>
+            		    <goal>test-jar</goal>
+        		</goals>
+        	    </execution>
+    		</executions>
+    	    </plugin>
+	</plugins>
+    </build>
+</project>

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/java/org/apache/maven/its/it0126/Component.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/java/org/apache/maven/its/it0126/Component.java?view=auto&rev=565892
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/java/org/apache/maven/its/it0126/Component.java (added)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/java/org/apache/maven/its/it0126/Component.java Tue Aug 14 13:07:22 2007
@@ -0,0 +1,25 @@
+package org.apache.maven.its.it0126;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+public interface Component
+{
+    void func();
+}

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/java/org/apache/maven/its/it0126/Component.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/java/org/apache/maven/its/it0126/Component.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/resources/META-INF/ejb-jar.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/resources/META-INF/ejb-jar.xml?view=auto&rev=565892
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/resources/META-INF/ejb-jar.xml (added)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/resources/META-INF/ejb-jar.xml Tue Aug 14 13:07:22 2007
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<ejb-jar xmlns="http://java.sun.com/xml/ns/javaee"
+	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd"
+	version="3.0">
+</ejb-jar>

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/resources/META-INF/ejb-jar.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/model/src/main/resources/META-INF/ejb-jar.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/pom.xml?view=auto&rev=565892
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/pom.xml (added)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/pom.xml Tue Aug 14 13:07:22 2007
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.maven.its.it0126</groupId>
+  <artifactId>parent</artifactId>
+  <name>Parent</name>
+  <packaging>pom</packaging>
+  <version>1.0-SNAPSHOT</version>
+  <modules>
+    <module>model</module>
+    <module>client</module>
+  </modules>
+  <properties>
+    <issue>MNG-2871</issue>
+  </properties>
+</project>

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0126-testJarDependency/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Modified: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/pom.xml?view=diff&rev=565892&r1=565891&r2=565892
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/pom.xml (original)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/pom.xml Tue Aug 14 13:07:22 2007
@@ -125,5 +125,6 @@
     <!-- <module>it0123-snapshotRangeRepository</module> MNG-2994 -->
     <!-- <module>it0124-pomExtensionComponentOverride</module> MNG-2771 -->
     <!-- <module>it0125-newestConflictResolver</module> MNG-612 -->
+    <module>it0126-testJarDependency</module>
   </modules>
 </project>