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 2006/04/04 17:06:02 UTC

svn commit: r391328 - in /maven/components/branches/maven-2.0.x/maven-core-it/it0098: ./ src/ src/test/ src/test/java/ src/test/java/org/ src/test/java/org/apache/ src/test/java/org/apache/maven/ src/test/java/org/apache/maven/it/ src/test/java/org/apa...

Author: jdcasey
Date: Tue Apr  4 08:05:58 2006
New Revision: 391328

URL: http://svn.apache.org/viewcvs?rev=391328&view=rev
Log:
Cleaning up it0098 to make the test simpler.

Added:
    maven/components/branches/maven-2.0.x/maven-core-it/it0098/src/
    maven/components/branches/maven-2.0.x/maven-core-it/it0098/src/test/
    maven/components/branches/maven-2.0.x/maven-core-it/it0098/src/test/java/
    maven/components/branches/maven-2.0.x/maven-core-it/it0098/src/test/java/org/
    maven/components/branches/maven-2.0.x/maven-core-it/it0098/src/test/java/org/apache/
    maven/components/branches/maven-2.0.x/maven-core-it/it0098/src/test/java/org/apache/maven/
    maven/components/branches/maven-2.0.x/maven-core-it/it0098/src/test/java/org/apache/maven/it/
    maven/components/branches/maven-2.0.x/maven-core-it/it0098/src/test/java/org/apache/maven/it/it0098/
    maven/components/branches/maven-2.0.x/maven-core-it/it0098/src/test/java/org/apache/maven/it/it0098/QuotedCLIPropertyTest.java   (with props)
Removed:
    maven/components/branches/maven-2.0.x/maven-core-it/it0098/expected-results.txt
    maven/components/branches/maven-2.0.x/maven-core-it/it0098/verifier.properties
Modified:
    maven/components/branches/maven-2.0.x/maven-core-it/it0098/cli-options.txt
    maven/components/branches/maven-2.0.x/maven-core-it/it0098/goals.txt
    maven/components/branches/maven-2.0.x/maven-core-it/it0098/pom.xml

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0098/cli-options.txt
URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-core-it/it0098/cli-options.txt?rev=391328&r1=391327&r2=391328&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0098/cli-options.txt (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0098/cli-options.txt Tue Apr  4 08:05:58 2006
@@ -1 +1 @@
--DgroupId=org.someproject "-DartifactId=test project"
+-Dtest.property="Test Property"

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0098/goals.txt
URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-core-it/it0098/goals.txt?rev=391328&r1=391327&r2=391328&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0098/goals.txt (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0098/goals.txt Tue Apr  4 08:05:58 2006
@@ -1 +1 @@
-archetype:create
+test

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0098/pom.xml
URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-core-it/it0098/pom.xml?rev=391328&r1=391327&r2=391328&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0098/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0098/pom.xml Tue Apr  4 08:05:58 2006
@@ -4,19 +4,12 @@
   <artifactId>it0098-archetype-orchestration-test</artifactId>
   <version>1</version>
   
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-clean-plugin</artifactId>
-        <configuration>
-          <filesets>
-            <fileset>
-              <directory>test project</directory>
-            </fileset>
-          </filesets>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+    </dependency>
+  </dependencies>
+
 </project>

Added: maven/components/branches/maven-2.0.x/maven-core-it/it0098/src/test/java/org/apache/maven/it/it0098/QuotedCLIPropertyTest.java
URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-core-it/it0098/src/test/java/org/apache/maven/it/it0098/QuotedCLIPropertyTest.java?rev=391328&view=auto
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0098/src/test/java/org/apache/maven/it/it0098/QuotedCLIPropertyTest.java (added)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0098/src/test/java/org/apache/maven/it/it0098/QuotedCLIPropertyTest.java Tue Apr  4 08:05:58 2006
@@ -0,0 +1,14 @@
+package org.apache.maven.it.it0098;
+
+import junit.framework.TestCase;
+
+public class QuotedCLIPropertyTest
+    extends TestCase
+{
+    
+    public void testPropertyValue()
+    {
+        assertEquals( "Test Property", System.getProperty( "test.property" ) );
+    }
+
+}

Propchange: maven/components/branches/maven-2.0.x/maven-core-it/it0098/src/test/java/org/apache/maven/it/it0098/QuotedCLIPropertyTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/components/branches/maven-2.0.x/maven-core-it/it0098/src/test/java/org/apache/maven/it/it0098/QuotedCLIPropertyTest.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"