Author: bentmann
Date: Thu Nov 5 11:25:52 2009
New Revision: 833031
URL:
http://svn.apache.org/viewvc?rev=833031&view=revLog:
o Strengthened IT
Added:
maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/dep/
maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/dep/pom.xml
- copied unchanged from r831535, maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/pom.xml
maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/man-dep/
maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/man-dep/pom.xml (with props)
maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/profile-dep/
maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/profile-dep/pom.xml (with props)
maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/profile-man-dep/
maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/profile-man-dep/pom.xml (with props)
Removed:
maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/pom.xml
Modified:
maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4005UniqueDependencyKeyTest.java
Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4005UniqueDependencyKeyTest.java
URL:
http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4005UniqueDependencyKeyTest.java?rev=833031&r1=833030&r2=833031&view=diff==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4005UniqueDependencyKeyTest.java (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4005UniqueDependencyKeyTest.java Thu Nov 5 11:25:52 2009
@@ -44,10 +44,43 @@
/**
* Test that duplicate dependencies cause a validation error during building.
*/
- public void testit()
+ public void testitDependency()
throws Exception
{
- File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-4005" );
+ test( "dep" );
+ }
+
+ /**
+ * Test that duplicate managed dependencies cause a validation error during building.
+ */
+ public void testitManagedDependency()
+ throws Exception
+ {
+ test( "man-dep" );
+ }
+
+ /**
+ * Test that duplicate dependencies in profiles cause a validation error during building.
+ */
+ public void testitProfileDependency()
+ throws Exception
+ {
+ test( "profile-dep" );
+ }
+
+ /**
+ * Test that duplicate managed dependencies in profiles cause a validation error during building.
+ */
+ public void testitProfileManagedDependency()
+ throws Exception
+ {
+ test( "profile-man-dep" );
+ }
+
+ private void test( String project )
+ throws Exception
+ {
+ File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-4005/" + project );
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
verifier.setAutoclean( false );
Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/man-dep/pom.xml
URL:
http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/man-dep/pom.xml?rev=833031&view=auto==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/man-dep/pom.xml (added)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/man-dep/pom.xml Thu Nov 5 11:25:52 2009
@@ -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>
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.apache.maven.its.mng4005</groupId>
+ <artifactId>test</artifactId>
+ <version>0.1</version>
+ <packaging>jar</packaging>
+
+ <name>Maven Integration Test :: MNG-4005</name>
+ <description>
+ Test that duplicate managed dependency declarations cause a validation error during building.
+ </description>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.2</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+</project>
Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/man-dep/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/man-dep/pom.xml
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/profile-dep/pom.xml
URL:
http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/profile-dep/pom.xml?rev=833031&view=auto==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/profile-dep/pom.xml (added)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/profile-dep/pom.xml Thu Nov 5 11:25:52 2009
@@ -0,0 +1,52 @@
+<?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>
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.apache.maven.its.mng4005</groupId>
+ <artifactId>test</artifactId>
+ <version>0.1</version>
+ <packaging>jar</packaging>
+
+ <name>Maven Integration Test :: MNG-4005</name>
+ <description>
+ Test that duplicate dependency declarations in profiles cause a validation error during building.
+ </description>
+
+ <profiles>
+ <profile>
+ <id>test</id>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.2</version>
+ </dependency>
+ </dependencies>
+ </profile>
+ </profiles>
+</project>
Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/profile-dep/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/profile-dep/pom.xml
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/profile-man-dep/pom.xml
URL:
http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/profile-man-dep/pom.xml?rev=833031&view=auto==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/profile-man-dep/pom.xml (added)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/profile-man-dep/pom.xml Thu Nov 5 11:25:52 2009
@@ -0,0 +1,54 @@
+<?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>
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.apache.maven.its.mng4005</groupId>
+ <artifactId>test</artifactId>
+ <version>0.1</version>
+ <packaging>jar</packaging>
+
+ <name>Maven Integration Test :: MNG-4005</name>
+ <description>
+ Test that duplicate managed dependency declarations in profiles cause a validation error during building.
+ </description>
+
+ <profiles>
+ <profile>
+ <id>test</id>
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.2</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+ </profile>
+ </profiles>
+</project>
Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/profile-man-dep/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4005/profile-man-dep/pom.xml
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision