You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2009/01/16 16:41:52 UTC

svn commit: r735037 - /maven/core-integration-testing/trunk/core-it-support/core-it-plugins/maven-it-plugin-packaging/pom.xml

Author: bentmann
Date: Fri Jan 16 07:41:52 2009
New Revision: 735037

URL: http://svn.apache.org/viewvc?rev=735037&view=rev
Log:
o Partially reverted r734246 and re-added a non-core dependency to restore original plugin behavior with regard to the extension manager

Modified:
    maven/core-integration-testing/trunk/core-it-support/core-it-plugins/maven-it-plugin-packaging/pom.xml

Modified: maven/core-integration-testing/trunk/core-it-support/core-it-plugins/maven-it-plugin-packaging/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-support/core-it-plugins/maven-it-plugin-packaging/pom.xml?rev=735037&r1=735036&r2=735037&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-support/core-it-plugins/maven-it-plugin-packaging/pom.xml (original)
+++ maven/core-integration-testing/trunk/core-it-support/core-it-plugins/maven-it-plugin-packaging/pom.xml Fri Jan 16 07:41:52 2009
@@ -47,5 +47,16 @@
       <artifactId>maven-plugin-api</artifactId>
       <version>2.0</version>
     </dependency>
+    <dependency>
+      <!--
+      NOTE: This is a dummy dependency whose contents doesn't matter. All that matters is that the plugin has at least
+      one dependency that is not excluded by the artifact filter of the core. This makes our IT plugin more closely
+      resemble a real-world plugin and in particular makes sure the extension manager does not consider the plugin
+      artifact as a standalone resource package. This subtle difference is crucial to reproduce MNG-2831.
+      -->
+      <groupId>org.apache.maven.its</groupId>
+      <artifactId>maven-core-it-support</artifactId>
+      <version>1.0</version>
+    </dependency>
   </dependencies>
 </project>