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 2008/07/02 17:45:19 UTC

svn commit: r673423 - in /maven/core-integration-testing/trunk/core-integration-tests/src/test: java/org/apache/maven/integrationtests/ resources/mng-3535-selfReferentialProperties/ resources/mng-3536-appendedAbsolutePaths/ resources/mng-3581-useWagonD...

Author: jdcasey
Date: Wed Jul  2 08:45:18 2008
New Revision: 673423

URL: http://svn.apache.org/viewvc?rev=673423&view=rev
Log:
[MNG-3642] Updating some existing ITs to try to improve their resiliency, and adding integration test for duplicate resources with different in/exclude patterns, that should be merged back after a plugin execution (rather than consolidated, which is what this issue is about).

Added:
    maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3642DynamicResourcesTest.java   (with props)
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/pom.xml   (with props)
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/src/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/src/main/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/src/main/java/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/src/main/java/org/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/src/main/java/org/apache/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/src/main/java/org/apache/maven/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/src/main/java/org/apache/maven/plugin/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/src/main/java/org/apache/maven/plugin/coreit/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/src/main/java/org/apache/maven/plugin/coreit/UsesWagonMojo.java   (with props)
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/project/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/project/pom.xml
      - copied, changed from r672290, maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/pom.xml
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/pom.xml   (with props)
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/src/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/src/test/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/src/test/resources/
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/src/test/resources/one.txt   (with props)
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/src/test/resources/two.txt   (with props)
Removed:
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3536-appendedAbsolutePaths/pom.xml
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/pom.xml
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/java/org/apache/maven/integrationtests/MavenITmng3535SelfReferentialProperties.java
    maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3581PluginUsesWagonDependency.java
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3535-selfReferentialProperties/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?rev=673423&r1=673422&r2=673423&view=diff
==============================================================================
--- 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 Wed Jul  2 08:45:18 2008
@@ -65,6 +65,7 @@
          * a fail fast technique as well.
          */
 
+        suite.addTestSuite( MavenITmng3642DynamicResourcesTest.class );
         suite.addTestSuite( MavenITmng3581PluginUsesWagonDependency.class );
         suite.addTestSuite( MavenITmng3545ProfileDeactivation.class );
         suite.addTestSuite( MavenITmng3536AppendedAbsolutePaths.class );

Modified: maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3535SelfReferentialProperties.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3535SelfReferentialProperties.java?rev=673423&r1=673422&r2=673423&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3535SelfReferentialProperties.java (original)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3535SelfReferentialProperties.java Wed Jul  2 08:45:18 2008
@@ -1,13 +1,15 @@
 package org.apache.maven.integrationtests;
 
 import org.apache.maven.artifact.versioning.InvalidVersionSpecificationException;
-import org.apache.maven.it.util.ResourceExtractor;
 import org.apache.maven.it.Verifier;
+import org.apache.maven.it.util.ResourceExtractor;
 
 import java.io.File;
+import java.util.ArrayList;
+import java.util.List;
 
 public class MavenITmng3535SelfReferentialProperties extends AbstractMavenIntegrationTestCase {
-	
+
 	public MavenITmng3535SelfReferentialProperties()
 		throws InvalidVersionSpecificationException
 	{
@@ -18,6 +20,12 @@
         File testDir = ResourceExtractor.simpleExtractResources(getClass(),
                 "/mng-3535-selfReferentialProperties");
         Verifier verifier = new Verifier(testDir.getAbsolutePath());
+
+        List opts = new ArrayList();
+        opts.add( "-X" );
+        verifier.setCliOptions( opts );
+
+        verifier.setAutoclean( false );
         verifier.executeGoal("verify");
 
         verifier.verifyErrorFreeLog();

Modified: maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3581PluginUsesWagonDependency.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3581PluginUsesWagonDependency.java?rev=673423&r1=673422&r2=673423&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3581PluginUsesWagonDependency.java (original)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3581PluginUsesWagonDependency.java Wed Jul  2 08:45:18 2008
@@ -23,7 +23,15 @@
         throws Exception
     {
         File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-3581-useWagonDependency" );
-        Verifier verifier = new Verifier( testDir.getAbsolutePath() );
+        File pluginDir = new File( testDir, "plugin" );
+        File projectDir = new File( testDir, "project" );
+
+        Verifier verifier = new Verifier( pluginDir.getAbsolutePath() );
+        verifier.executeGoal( "install" );
+        verifier.verifyErrorFreeLog();
+        verifier.resetStreams();
+
+        verifier = new Verifier( projectDir.getAbsolutePath() );
         verifier.executeGoal( "validate" );
         verifier.verifyErrorFreeLog();
         verifier.resetStreams();

Added: maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3642DynamicResourcesTest.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3642DynamicResourcesTest.java?rev=673423&view=auto
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3642DynamicResourcesTest.java (added)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/java/org/apache/maven/integrationtests/MavenITmng3642DynamicResourcesTest.java Wed Jul  2 08:45:18 2008
@@ -0,0 +1,100 @@
+/*
+ * 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.
+ */
+
+package org.apache.maven.integrationtests;
+
+import java.io.File;
+import java.util.ArrayList;
+import java.util.List;
+
+import org.apache.maven.artifact.versioning.InvalidVersionSpecificationException;
+import org.apache.maven.integrationtests.AbstractMavenIntegrationTestCase;
+import org.apache.maven.it.Verifier;
+import org.apache.maven.it.util.ResourceExtractor;
+
+/**
+ * This is a test set for <a href="http://jira.codehaus.org/browse/MNG-3642">MNG-3642</a>.
+ *
+ * @todo Fill in a better description of what this test verifies!
+ * 
+ * @author <a href="mailto:brianf@apache.org">Brian Fox</a>
+ * @author jdcasey
+ * 
+ */
+public class MavenITmng3642DynamicResourcesTest
+    extends AbstractMavenIntegrationTestCase
+{
+    public MavenITmng3642DynamicResourcesTest()
+        throws InvalidVersionSpecificationException
+    {
+        super( "(2.0.9,)" ); // only test in 2.0.9+
+    }
+
+    public void testitMNG3642 ()
+        throws Exception
+    {
+        // The testdir is computed from the location of this
+        // file.
+        File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-3642-dynamicResources" );
+
+        Verifier verifier;
+
+        /*
+         * We must first make sure that any artifact created
+         * by this test has been removed from the local
+         * repository. Failing to do this could cause
+         * unstable test results. Fortunately, the verifier
+         * makes it easy to do this.
+         */
+        verifier = new Verifier( testDir.getAbsolutePath() );
+
+        /*
+         * The Command Line Options (CLI) are passed to the
+         * verifier as a list. This is handy for things like
+         * redefining the local repository if needed. In
+         * this case, we use the -N flag so that Maven won't
+         * recurse. We are only installing the parent pom to
+         * the local repo here.
+         */
+        verifier.executeGoal( "process-test-resources" );
+
+        /*
+         * This is the simplest way to check a build
+         * succeeded. It is also the simplest way to create
+         * an IT test: make the build pass when the test
+         * should pass, and make the build fail when the
+         * test should fail. There are other methods
+         * supported by the verifier. They can be seen here:
+         * http://maven.apache.org/shared/maven-verifier/apidocs/index.html
+         */
+        verifier.verifyErrorFreeLog();
+
+        /*
+         * Reset the streams before executing the verifier
+         * again.
+         */
+        verifier.resetStreams();
+
+		File first = new File( testDir, "target/test-classes/one.txt" );
+		assertTrue( "First resource file was not present: " + first, first.exists() );
+		
+		File second = new File( testDir, "target/test-classes/two.txt" );
+		assertTrue( "Second resource file was not present: " + second, second.exists() );
+    }
+}

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

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

Modified: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3535-selfReferentialProperties/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3535-selfReferentialProperties/pom.xml?rev=673423&r1=673422&r2=673423&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3535-selfReferentialProperties/pom.xml (original)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3535-selfReferentialProperties/pom.xml Wed Jul  2 08:45:18 2008
@@ -21,12 +21,11 @@
          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>test</groupId>
-    <artifactId>mng3536-AppendedAbsolutePaths</artifactId>
+    <artifactId>mng3535-selfReferentialProperties</artifactId>
     <packaging>pom</packaging>
     <version>1.0</version>
-    <name>Apache Maven: mng3536-AppendedAbsolutePaths</name>
+    <name>Apache Maven: mng3535-selfReferentialProperties</name>
     <build>
-        <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.its.plugins</groupId>

Added: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/pom.xml?rev=673423&view=auto
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/pom.xml (added)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/pom.xml Wed Jul  2 08:45:18 2008
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+  ~ Copyright 2005-2006 The Apache Software Foundation.
+  ~
+  ~ Licensed 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.mng3581</groupId>
+  <artifactId>maven-mng3581-plugin</artifactId>
+  <version>1</version>
+  <packaging>maven-plugin</packaging>
+  <name>Maven Integration Test Plugin :: Uses Wagon Plugin</name>
+  <inceptionYear>2006</inceptionYear>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-plugin-api</artifactId>
+      <version>2.0</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-artifact-manager</artifactId>
+      <version>2.0</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.wagon</groupId>
+      <artifactId>wagon-ssh</artifactId>
+      <version>1.0-beta-2</version>
+    </dependency>
+  </dependencies>
+</project>

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

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

Added: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/src/main/java/org/apache/maven/plugin/coreit/UsesWagonMojo.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/src/main/java/org/apache/maven/plugin/coreit/UsesWagonMojo.java?rev=673423&view=auto
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/src/main/java/org/apache/maven/plugin/coreit/UsesWagonMojo.java (added)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/src/main/java/org/apache/maven/plugin/coreit/UsesWagonMojo.java Wed Jul  2 08:45:18 2008
@@ -0,0 +1,35 @@
+package org.apache.maven.plugin.coreit;
+
+import org.apache.maven.artifact.manager.WagonManager;
+import org.apache.maven.plugin.AbstractMojo;
+import org.apache.maven.plugin.MojoExecutionException;
+import org.apache.maven.wagon.Wagon;
+import org.apache.maven.wagon.providers.ssh.jsch.ScpWagon;
+
+/**
+ * @goal use-wagon
+ * @phase validate
+ */
+public class UsesWagonMojo
+    extends AbstractMojo
+{
+    /**
+     * @component
+     */
+    private WagonManager wagonManager;
+    
+    public void execute()
+        throws MojoExecutionException
+    {
+        try
+        {
+            Wagon wagon = wagonManager.getWagon( "scp" );
+
+            ScpWagon myWagon = (ScpWagon) wagon;
+        }
+        catch( Exception e )
+        {
+            throw new MojoExecutionException( e.getMessage(), e );
+        }
+    }
+}

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/src/main/java/org/apache/maven/plugin/coreit/UsesWagonMojo.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/plugin/src/main/java/org/apache/maven/plugin/coreit/UsesWagonMojo.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Copied: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/project/pom.xml (from r672290, maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/pom.xml)
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/project/pom.xml?p2=maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/project/pom.xml&p1=maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/pom.xml&r1=672290&r2=673423&rev=673423&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/pom.xml (original)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3581-useWagonDependency/project/pom.xml Wed Jul  2 08:45:18 2008
@@ -6,8 +6,9 @@
   <build>
     <plugins>
       <plugin>
-        <groupId>org.apache.maven.its.plugins</groupId>
-        <artifactId>maven-it-plugin-uses-wagon</artifactId>
+        <groupId>org.apache.maven.its.mng3581</groupId>
+        <artifactId>maven-mng3581-plugin</artifactId>
+        <version>1</version>
         <executions>
           <execution>
             <phase>validate</phase>

Added: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/pom.xml?rev=673423&view=auto
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/pom.xml (added)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/pom.xml Wed Jul  2 08:45:18 2008
@@ -0,0 +1,24 @@
+<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.mng3642</groupId>
+  <artifactId>mng-3642-dynamicResources</artifactId>
+  <version>1</version>
+
+  <build>
+    <testResources>
+      <testResource>
+        <directory>src/test/resources</directory>
+        <includes>
+          <include>one.txt</include>
+        </includes>
+      </testResource>
+      <testResource>
+        <directory>src/test/resources</directory>
+        <includes>
+          <include>two.txt</include>
+        </includes>
+      </testResource>
+    </testResources>
+  </build>
+</project>

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

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

Added: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/src/test/resources/one.txt
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/src/test/resources/one.txt?rev=673423&view=auto
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/src/test/resources/one.txt (added)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/src/test/resources/one.txt Wed Jul  2 08:45:18 2008
@@ -0,0 +1 @@
+one

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/src/test/resources/one.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/src/test/resources/one.txt
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/src/test/resources/two.txt
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/src/test/resources/two.txt?rev=673423&view=auto
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/src/test/resources/two.txt (added)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/src/test/resources/two.txt Wed Jul  2 08:45:18 2008
@@ -0,0 +1 @@
+two

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/src/test/resources/two.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3642-dynamicResources/src/test/resources/two.txt
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"