You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by br...@apache.org on 2007/07/07 16:06:30 UTC

svn commit: r554208 - /maven/plugins/trunk/maven-plugin-plugin/pom.xml

Author: brett
Date: Sat Jul  7 07:06:29 2007
New Revision: 554208

URL: http://svn.apache.org/viewvc?view=rev&rev=554208
Log:
pin to a previous version to see if it avoids build problems when the plugin is reloaded

Modified:
    maven/plugins/trunk/maven-plugin-plugin/pom.xml

Modified: maven/plugins/trunk/maven-plugin-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-plugin-plugin/pom.xml?view=diff&rev=554208&r1=554207&r2=554208
==============================================================================
--- maven/plugins/trunk/maven-plugin-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-plugin-plugin/pom.xml Sat Jul  7 07:06:29 2007
@@ -178,5 +178,17 @@
       <version>1.0-alpha-9</version>
     </dependency>
   </dependencies>
+  <build>
+    <pluginManagement>
+      <plugins>
+        <!-- pin to a previous version so it doesn't get reloaded during build -->
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-plugin-plugin</artifactId>
+          <version>2.3</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
 </project>