Author: bentmann Date: Tue Dec 2 14:00:34 2008 New Revision: 722627 URL: http://svn.apache.org/viewvc?rev=722627&view=rev Log: o Added test to check the translation of the various dependency scopes to the different class paths
Added: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0142DirectDependencyScopesTest.java (with props) maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/lib/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/lib/system-0.1.jar (with props) maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/pom.xml (with props) maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/0.1/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/0.1/compile-0.1.jar (with props) maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/0.1/compile-0.1.pom maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/maven-metadata.xml (with props) maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/0.1/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/0.1/provided-0.1.jar (with props) maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/0.1/provided-0.1.pom maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/maven-metadata.xml (with props) maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/0.1/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/0.1/runtime-0.1.jar (with props) maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/0.1/runtime-0.1.pom maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/maven-metadata.xml (with props) maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/0.1/ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/0.1/test-0.1.jar (with props) maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/0.1/test-0.1.pom maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/maven-metadata.xml (with props) Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java?rev=722627&r1=722626&r2=722627&view=diff ============================================================================== --- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java (original) +++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java Tue Dec 2 14:00:34 2008 @@ -209,6 +209,7 @@ suite.addTestSuite( MavenITmng1323AntrunDependenciesTest.class ); suite.addTestSuite( MavenITmng0836PluginParentResolutionTest.class ); suite.addTestSuite( MavenITmng0469ReportConfigTest.class ); + suite.addTestSuite( MavenIT0142DirectDependencyScopesTest.class ); suite.addTestSuite( MavenIT0140Test.class ); suite.addTestSuite( MavenIT0139Test.class ); suite.addTestSuite( MavenIT0138PluginLifecycleTest.class ); Added: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0142DirectDependencyScopesTest.java URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0142DirectDependencyScopesTest.java?rev=722627&view=auto ============================================================================== --- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0142DirectDependencyScopesTest.java (added) +++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0142DirectDependencyScopesTest.java Tue Dec 2 14:00:34 2008 @@ -0,0 +1,106 @@ +package org.apache.maven.it; + +/* + * 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.it.Verifier; +import org.apache.maven.it.util.ResourceExtractor; + +import java.io.File; +import java.util.Arrays; +import java.util.List; + +/** + * + * @author Benjamin Bentmann + * @version $Id$ + */ +public class MavenIT0142DirectDependencyScopesTest + extends AbstractMavenIntegrationTestCase +{ + + public MavenIT0142DirectDependencyScopesTest() + { + } + + /** + * Test that the different scopes of direct dependencies end up on the right class paths. + */ + public void testit0142() + throws Exception + { + File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/it0142" ); + + Verifier verifier = new Verifier( testDir.getAbsolutePath() ); + verifier.setAutoclean( false ); + verifier.deleteDirectory( "target" ); + verifier.deleteArtifacts( "org.apache.maven.its.it0142" ); + verifier.filterFile( "pom.xml", "pom.xml", "UTF-8", verifier.newDefaultFilterProperties() ); + verifier.executeGoal( "validate" ); + verifier.verifyErrorFreeLog(); + verifier.resetStreams(); + + /* + * NOTE: Class path ordering is another issue (MNG-1412), so we merely check set containment here. + */ + + List compileArtifacts = verifier.loadLines( "target/compile-artifacts.txt", "UTF-8" ); + assertEquals( 3, compileArtifacts.size() ); + assertTrue( compileArtifacts.toString(), compileArtifacts.contains( "org.apache.maven.its.it0142:system:jar:0.1" ) ); + assertTrue( compileArtifacts.toString(), compileArtifacts.contains( "org.apache.maven.its.it0142:provided:jar:0.1" ) ); + assertTrue( compileArtifacts.toString(), compileArtifacts.contains( "org.apache.maven.its.it0142:compile:jar:0.1" ) ); + + List compileClassPath = verifier.loadLines( "target/compile-cp.txt", "UTF-8" ); + assertEquals( 4, compileClassPath.size() ); + assertTrue( compileClassPath.toString(), compileClassPath.contains( "classes" ) ); + assertTrue( compileClassPath.toString(), compileClassPath.contains( "system-0.1.jar" ) ); + assertTrue( compileClassPath.toString(), compileClassPath.contains( "provided-0.1.jar" ) ); + assertTrue( compileClassPath.toString(), compileClassPath.contains( "compile-0.1.jar" ) ); + + List runtimeArtifacts = verifier.loadLines( "target/runtime-artifacts.txt", "UTF-8" ); + assertEquals( 2, runtimeArtifacts.size() ); + assertTrue( runtimeArtifacts.toString(), runtimeArtifacts.contains( "org.apache.maven.its.it0142:compile:jar:0.1" ) ); + assertTrue( runtimeArtifacts.toString(), runtimeArtifacts.contains( "org.apache.maven.its.it0142:runtime:jar:0.1" ) ); + + List runtimeClassPath = verifier.loadLines( "target/runtime-cp.txt", "UTF-8" ); + assertEquals( 3, runtimeClassPath.size() ); + assertTrue( runtimeClassPath.toString(), runtimeClassPath.contains( "classes" ) ); + assertTrue( runtimeClassPath.toString(), runtimeClassPath.contains( "compile-0.1.jar" ) ); + assertTrue( runtimeClassPath.toString(), runtimeClassPath.contains( "runtime-0.1.jar" ) ); + + List testArtifacts = verifier.loadLines( "target/test-artifacts.txt", "UTF-8" ); + assertEquals( 5, testArtifacts.size() ); + assertTrue( testArtifacts.toString(), testArtifacts.contains( "org.apache.maven.its.it0142:system:jar:0.1" ) ); + assertTrue( testArtifacts.toString(), testArtifacts.contains( "org.apache.maven.its.it0142:provided:jar:0.1" ) ); + assertTrue( testArtifacts.toString(), testArtifacts.contains( "org.apache.maven.its.it0142:compile:jar:0.1" ) ); + assertTrue( testArtifacts.toString(), testArtifacts.contains( "org.apache.maven.its.it0142:runtime:jar:0.1" ) ); + assertTrue( testArtifacts.toString(), testArtifacts.contains( "org.apache.maven.its.it0142:test:jar:0.1" ) ); + + List testClassPath = verifier.loadLines( "target/test-cp.txt", "UTF-8" ); + assertEquals( 7, testClassPath.size() ); + assertTrue( testClassPath.toString(), testClassPath.contains( "classes" ) ); + assertTrue( testClassPath.toString(), testClassPath.contains( "test-classes" ) ); + assertTrue( testClassPath.toString(), testClassPath.contains( "system-0.1.jar" ) ); + assertTrue( testClassPath.toString(), testClassPath.contains( "provided-0.1.jar" ) ); + assertTrue( testClassPath.toString(), testClassPath.contains( "compile-0.1.jar" ) ); + assertTrue( testClassPath.toString(), testClassPath.contains( "runtime-0.1.jar" ) ); + assertTrue( testClassPath.toString(), testClassPath.contains( "test-0.1.jar" ) ); + } + +} Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0142DirectDependencyScopesTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0142DirectDependencyScopesTest.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/lib/system-0.1.jar URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/lib/system-0.1.jar?rev=722627&view=auto ============================================================================== Binary file - no diff available. Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/lib/system-0.1.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/pom.xml URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/pom.xml?rev=722627&view=auto ============================================================================== --- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/pom.xml (added) +++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/pom.xml Tue Dec 2 14:00:34 2008 @@ -0,0 +1,113 @@ +<?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.it0142</groupId> + <artifactId>consumer</artifactId> + <version>0.1</version> + + <name>Maven Integration Test :: it0142</name> + <description> + Test that the different scopes of direct dependencies end up on the right class paths. + </description> + + <dependencies> + <dependency> + <groupId>org.apache.maven.its.it0142</groupId> + <artifactId>provided</artifactId> + <version>0.1</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.maven.its.it0142</groupId> + <artifactId>compile</artifactId> + <version>0.1</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.apache.maven.its.it0142</groupId> + <artifactId>runtime</artifactId> + <version>0.1</version> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.maven.its.it0142</groupId> + <artifactId>test</artifactId> + <version>0.1</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.maven.its.it0142</groupId> + <artifactId>system</artifactId> + <version>0.1</version> + <scope>system</scope> + <!-- + NOTE: We don't want to test POM interpolation here, so we have the test controller filter the POM. + --> + <systemPath>@basedir@/lib/system-0.1.jar</systemPath> + </dependency> + </dependencies> + + <repositories> + <repository> + <id>maven-core-it</id> + <url>file:///${basedir}/repo</url> + <releases> + <checksumPolicy>ignore</checksumPolicy> + </releases> + <snapshots> + <checksumPolicy>ignore</checksumPolicy> + </snapshots> + </repository> + </repositories> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.its.plugins</groupId> + <artifactId>maven-it-plugin-dependency-resolution</artifactId> + <version>2.1-SNAPSHOT</version> + <executions> + <execution> + <id>test</id> + <phase>validate</phase> + <configuration> + <compileClassPath>target/compile-cp.txt</compileClassPath> + <compileArtifacts>target/compile-artifacts.txt</compileArtifacts> + <runtimeClassPath>target/runtime-cp.txt</runtimeClassPath> + <runtimeArtifacts>target/runtime-artifacts.txt</runtimeArtifacts> + <testClassPath>target/test-cp.txt</testClassPath> + <testArtifacts>target/test-artifacts.txt</testArtifacts> + <significantPathLevels>1</significantPathLevels> + </configuration> + <goals> + <goal>compile</goal> + <goal>runtime</goal> + <goal>test</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/pom.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/0.1/compile-0.1.jar URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/0.1/compile-0.1.jar?rev=722627&view=auto ============================================================================== Binary file - no diff available. Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/0.1/compile-0.1.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/0.1/compile-0.1.pom URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/0.1/compile-0.1.pom?rev=722627&view=auto ============================================================================== --- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/0.1/compile-0.1.pom (added) +++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/0.1/compile-0.1.pom Tue Dec 2 14:00:34 2008 @@ -0,0 +1,55 @@ +<?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.it0142</groupId> + <artifactId>compile</artifactId> + <version>0.1</version> + <packaging>jar</packaging> + + <distributionManagement> + <repository> + <id>maven-core-it</id> + <url>file:///${basedir}/repo</url> + </repository> + </distributionManagement> + + <properties> + <maven.test.skip>true</maven.test.skip> + </properties> + + <build> + <resources> + <resource> + <directory>.</directory> + <includes> + <include>pom.xml</include> + <include>src/**</include> + </includes> + </resource> + <resource> + <directory>src/main/resources</directory> + </resource> + </resources> + </build> +</project> Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/maven-metadata.xml URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/maven-metadata.xml?rev=722627&view=auto ============================================================================== --- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/maven-metadata.xml (added) +++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/maven-metadata.xml Tue Dec 2 14:00:34 2008 @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?><metadata> + <groupId>org.apache.maven.its.it0142</groupId> + <artifactId>compile</artifactId> + <version>0.1</version> + <versioning> + <release>0.1</release> + <versions> + <version>0.1</version> + </versions> + <lastUpdated>20081202191036</lastUpdated> + </versioning> +</metadata> \ No newline at end of file Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/maven-metadata.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/compile/maven-metadata.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/0.1/provided-0.1.jar URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/0.1/provided-0.1.jar?rev=722627&view=auto ============================================================================== Binary file - no diff available. Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/0.1/provided-0.1.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/0.1/provided-0.1.pom URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/0.1/provided-0.1.pom?rev=722627&view=auto ============================================================================== --- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/0.1/provided-0.1.pom (added) +++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/0.1/provided-0.1.pom Tue Dec 2 14:00:34 2008 @@ -0,0 +1,55 @@ +<?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.it0142</groupId> + <artifactId>provided</artifactId> + <version>0.1</version> + <packaging>jar</packaging> + + <distributionManagement> + <repository> + <id>maven-core-it</id> + <url>file:///${basedir}/repo</url> + </repository> + </distributionManagement> + + <properties> + <maven.test.skip>true</maven.test.skip> + </properties> + + <build> + <resources> + <resource> + <directory>.</directory> + <includes> + <include>pom.xml</include> + <include>src/**</include> + </includes> + </resource> + <resource> + <directory>src/main/resources</directory> + </resource> + </resources> + </build> +</project> Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/maven-metadata.xml URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/maven-metadata.xml?rev=722627&view=auto ============================================================================== --- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/maven-metadata.xml (added) +++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/maven-metadata.xml Tue Dec 2 14:00:34 2008 @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?><metadata> + <groupId>org.apache.maven.its.it0142</groupId> + <artifactId>provided</artifactId> + <version>0.1</version> + <versioning> + <release>0.1</release> + <versions> + <version>0.1</version> + </versions> + <lastUpdated>20081202213936</lastUpdated> + </versioning> +</metadata> \ No newline at end of file Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/maven-metadata.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/provided/maven-metadata.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/0.1/runtime-0.1.jar URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/0.1/runtime-0.1.jar?rev=722627&view=auto ============================================================================== Binary file - no diff available. Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/0.1/runtime-0.1.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/0.1/runtime-0.1.pom URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/0.1/runtime-0.1.pom?rev=722627&view=auto ============================================================================== --- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/0.1/runtime-0.1.pom (added) +++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/0.1/runtime-0.1.pom Tue Dec 2 14:00:34 2008 @@ -0,0 +1,55 @@ +<?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.it0142</groupId> + <artifactId>runtime</artifactId> + <version>0.1</version> + <packaging>jar</packaging> + + <distributionManagement> + <repository> + <id>maven-core-it</id> + <url>file:///${basedir}/repo</url> + </repository> + </distributionManagement> + + <properties> + <maven.test.skip>true</maven.test.skip> + </properties> + + <build> + <resources> + <resource> + <directory>.</directory> + <includes> + <include>pom.xml</include> + <include>src/**</include> + </includes> + </resource> + <resource> + <directory>src/main/resources</directory> + </resource> + </resources> + </build> +</project> Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/maven-metadata.xml URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/maven-metadata.xml?rev=722627&view=auto ============================================================================== --- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/maven-metadata.xml (added) +++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/maven-metadata.xml Tue Dec 2 14:00:34 2008 @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?><metadata> + <groupId>org.apache.maven.its.it0142</groupId> + <artifactId>runtime</artifactId> + <version>0.1</version> + <versioning> + <release>0.1</release> + <versions> + <version>0.1</version> + </versions> + <lastUpdated>20081202191048</lastUpdated> + </versioning> +</metadata> \ No newline at end of file Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/maven-metadata.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/runtime/maven-metadata.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/0.1/test-0.1.jar URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/0.1/test-0.1.jar?rev=722627&view=auto ============================================================================== Binary file - no diff available. Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/0.1/test-0.1.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/0.1/test-0.1.pom URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/0.1/test-0.1.pom?rev=722627&view=auto ============================================================================== --- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/0.1/test-0.1.pom (added) +++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/0.1/test-0.1.pom Tue Dec 2 14:00:34 2008 @@ -0,0 +1,55 @@ +<?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.it0142</groupId> + <artifactId>test</artifactId> + <version>0.1</version> + <packaging>jar</packaging> + + <distributionManagement> + <repository> + <id>maven-core-it</id> + <url>file:///${basedir}/repo</url> + </repository> + </distributionManagement> + + <properties> + <maven.test.skip>true</maven.test.skip> + </properties> + + <build> + <resources> + <resource> + <directory>.</directory> + <includes> + <include>pom.xml</include> + <include>src/**</include> + </includes> + </resource> + <resource> + <directory>src/main/resources</directory> + </resource> + </resources> + </build> +</project> Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/maven-metadata.xml URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/maven-metadata.xml?rev=722627&view=auto ============================================================================== --- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/maven-metadata.xml (added) +++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/maven-metadata.xml Tue Dec 2 14:00:34 2008 @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?><metadata> + <groupId>org.apache.maven.its.it0142</groupId> + <artifactId>test</artifactId> + <version>0.1</version> + <versioning> + <release>0.1</release> + <versions> + <version>0.1</version> + </versions> + <lastUpdated>20081202191024</lastUpdated> + </versioning> +</metadata> \ No newline at end of file Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/maven-metadata.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0142/repo/org/apache/maven/its/it0142/test/maven-metadata.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision