Author: jdcasey
Date: Mon Oct  3 14:50:35 2005
New Revision: 293456

URL: http://svn.apache.org/viewcvs?rev=293456&view=rev
Log:
Adding IT for MNG-1052, to test that compiler plugin configuration from the 
pluginManagement section is injected with the addition of the implicit plugin 
instance.

Added:
    maven/components/trunk/maven-core-it/it0078/
    maven/components/trunk/maven-core-it/it0078/expected-results.txt   (with 
props)
    maven/components/trunk/maven-core-it/it0078/goals.txt   (with props)
    maven/components/trunk/maven-core-it/it0078/pom.xml   (with props)
    maven/components/trunk/maven-core-it/it0078/src/
    maven/components/trunk/maven-core-it/it0078/src/main/
    maven/components/trunk/maven-core-it/it0078/src/main/java/
    maven/components/trunk/maven-core-it/it0078/src/main/java/Test.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=293456&r1=293455&r2=293456&view=diff
==============================================================================
--- maven/components/trunk/maven-core-it/README.txt (original)
+++ maven/components/trunk/maven-core-it/README.txt Mon Oct  3 14:50:35 2005
@@ -210,6 +210,10 @@
 
 it0077: Test test jar attachment.
 
+it0078: Test that configuration for maven-compiler-plugin is injected from
+        PluginManagement section even when it's not explicitly defined in the
+        plugins section.
+
 -------------------------------------------------------------------------------
 
 - 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=293456&r1=293455&r2=293456&view=diff
==============================================================================
--- maven/components/trunk/maven-core-it/integration-tests.txt (original)
+++ maven/components/trunk/maven-core-it/integration-tests.txt Mon Oct  3 
14:50:35 2005
@@ -1,3 +1,4 @@
+it0078
 it0077
 it0076
 it0075

Added: maven/components/trunk/maven-core-it/it0078/expected-results.txt
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0078/expected-results.txt?rev=293456&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0078/expected-results.txt (added)
+++ maven/components/trunk/maven-core-it/it0078/expected-results.txt Mon Oct  3 
14:50:35 2005
@@ -0,0 +1 @@
+!target/classes/Test.class

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

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

Added: maven/components/trunk/maven-core-it/it0078/goals.txt
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0078/goals.txt?rev=293456&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0078/goals.txt (added)
+++ maven/components/trunk/maven-core-it/it0078/goals.txt Mon Oct  3 14:50:35 
2005
@@ -0,0 +1 @@
+compile

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

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

Added: maven/components/trunk/maven-core-it/it0078/pom.xml
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0078/pom.xml?rev=293456&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0078/pom.xml (added)
+++ maven/components/trunk/maven-core-it/it0078/pom.xml Mon Oct  3 14:50:35 2005
@@ -0,0 +1,21 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.maven.it</groupId>
+  <artifactId>maven-core-it0078</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0</version>
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <configuration>
+            <excludes>
+              <exclude implementation="java.lang.String">**/Test.java</exclude>
+            </excludes>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+</project>

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

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

Added: maven/components/trunk/maven-core-it/it0078/src/main/java/Test.java
URL: 
http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0078/src/main/java/Test.java?rev=293456&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0078/src/main/java/Test.java (added)
+++ maven/components/trunk/maven-core-it/it0078/src/main/java/Test.java Mon Oct 
 3 14:50:35 2005
@@ -0,0 +1,6 @@
+import java.util.List;
+
+public class Test
+{
+       private List strings;
+}

Propchange: maven/components/trunk/maven-core-it/it0078/src/main/java/Test.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/components/trunk/maven-core-it/it0078/src/main/java/Test.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to