You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by jd...@apache.org on 2005/09/27 23:16:23 UTC

svn commit: r292047 - in /maven/components/trunk/maven-core-it: ./ it0074/ it0074/src/ it0074/src/main/ it0074/src/main/java/ it0074/src/main/java/org/ it0074/src/main/java/org/apache/ it0074/src/main/java/org/apache/maven/ it0074/src/main/java/org/apa...

Author: jdcasey
Date: Tue Sep 27 14:16:16 2005
New Revision: 292047

URL: http://svn.apache.org/viewcvs?rev=292047&view=rev
Log:
Added test case to prove that MNG-781 is fixed.

Added:
    maven/components/trunk/maven-core-it/it0074/
    maven/components/trunk/maven-core-it/it0074/expected-results.txt   (with props)
    maven/components/trunk/maven-core-it/it0074/goals.txt   (with props)
    maven/components/trunk/maven-core-it/it0074/pom.xml   (with props)
    maven/components/trunk/maven-core-it/it0074/src/
    maven/components/trunk/maven-core-it/it0074/src/main/
    maven/components/trunk/maven-core-it/it0074/src/main/java/
    maven/components/trunk/maven-core-it/it0074/src/main/java/org/
    maven/components/trunk/maven-core-it/it0074/src/main/java/org/apache/
    maven/components/trunk/maven-core-it/it0074/src/main/java/org/apache/maven/
    maven/components/trunk/maven-core-it/it0074/src/main/java/org/apache/maven/it0074/
    maven/components/trunk/maven-core-it/it0074/src/main/java/org/apache/maven/it0074/Person.java   (with props)
Modified:
    maven/components/trunk/maven-core-it/README.txt
    maven/components/trunk/maven-core-it/integration-tests.txt

Modified: maven/components/trunk/maven-core-it/README.txt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/README.txt?rev=292047&r1=292046&r2=292047&view=diff
==============================================================================
--- maven/components/trunk/maven-core-it/README.txt (original)
+++ maven/components/trunk/maven-core-it/README.txt Tue Sep 27 14:16:16 2005
@@ -198,6 +198,9 @@
 
 it0073: Tests context passing between mojos in the same plugin.
 
+it0074: Test that plugin-level configuration instances are not nullified by
+        execution-level configuration instances.
+
 -------------------------------------------------------------------------------
 
 - generated sources

Modified: maven/components/trunk/maven-core-it/integration-tests.txt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/integration-tests.txt?rev=292047&r1=292046&r2=292047&view=diff
==============================================================================
--- maven/components/trunk/maven-core-it/integration-tests.txt (original)
+++ maven/components/trunk/maven-core-it/integration-tests.txt Tue Sep 27 14:16:16 2005
@@ -1,3 +1,4 @@
+it0074
 it0073
 it0072
 it0071

Added: maven/components/trunk/maven-core-it/it0074/expected-results.txt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0074/expected-results.txt?rev=292047&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0074/expected-results.txt (added)
+++ maven/components/trunk/maven-core-it/it0074/expected-results.txt Tue Sep 27 14:16:16 2005
@@ -0,0 +1 @@
+.classpath

Propchange: maven/components/trunk/maven-core-it/it0074/expected-results.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/components/trunk/maven-core-it/it0074/expected-results.txt
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/components/trunk/maven-core-it/it0074/goals.txt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0074/goals.txt?rev=292047&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0074/goals.txt (added)
+++ maven/components/trunk/maven-core-it/it0074/goals.txt Tue Sep 27 14:16:16 2005
@@ -0,0 +1 @@
+eclipse:eclipse

Propchange: maven/components/trunk/maven-core-it/it0074/goals.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/components/trunk/maven-core-it/it0074/goals.txt
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/components/trunk/maven-core-it/it0074/pom.xml
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0074/pom.xml?rev=292047&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0074/pom.xml (added)
+++ maven/components/trunk/maven-core-it/it0074/pom.xml Tue Sep 27 14:16:16 2005
@@ -0,0 +1,46 @@
+<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.it</groupId>
+  <artifactId>maven-core-it0074</artifactId>
+  <version>1.0</version>
+
+  <pluginRepositories>
+    <pluginRepository>
+      <id>snapshots</id>
+      <url>http://snapshots.maven.codehaus.org/maven2</url>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+    </pluginRepository>
+  </pluginRepositories>
+
+  <dependencies>
+    <groupId>junit</groupId>
+    <artifactId>junit</artifactId>
+    <version>3.8.1</version>
+  </dependencies>
+ 
+  <build>
+    <plugins> 
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>precompile</id>
+            <phase>initialize</phase>
+            <configuration>
+              <includes >
+                <include implementation="java.lang.String">org/apache/maven/it0074/Person.java</include>
+              </includes>
+            </configuration>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>    
+  </build>
+</project>

Propchange: maven/components/trunk/maven-core-it/it0074/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/components/trunk/maven-core-it/it0074/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/components/trunk/maven-core-it/it0074/src/main/java/org/apache/maven/it0074/Person.java
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0074/src/main/java/org/apache/maven/it0074/Person.java?rev=292047&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0074/src/main/java/org/apache/maven/it0074/Person.java (added)
+++ maven/components/trunk/maven-core-it/it0074/src/main/java/org/apache/maven/it0074/Person.java Tue Sep 27 14:16:16 2005
@@ -0,0 +1,6 @@
+package org.apache.maven.it0074;
+
+public class Person
+{
+    private String name;
+}

Propchange: maven/components/trunk/maven-core-it/it0074/src/main/java/org/apache/maven/it0074/Person.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/components/trunk/maven-core-it/it0074/src/main/java/org/apache/maven/it0074/Person.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org