You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2012/01/12 17:53:50 UTC

svn commit: r1230636 - /directory/studio/trunk/libraries/pom.xml

Author: pamarcelot
Date: Thu Jan 12 16:53:50 2012
New Revision: 1230636

URL: http://svn.apache.org/viewvc?rev=1230636&view=rev
Log:
Disabling deployment of 'libraries' plugins.

Modified:
    directory/studio/trunk/libraries/pom.xml

Modified: directory/studio/trunk/libraries/pom.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/libraries/pom.xml?rev=1230636&r1=1230635&r2=1230636&view=diff
==============================================================================
--- directory/studio/trunk/libraries/pom.xml (original)
+++ directory/studio/trunk/libraries/pom.xml Thu Jan 12 16:53:50 2012
@@ -57,5 +57,19 @@
     <module>org.slf4j.log4j12</module>
     <module>org.xpp3.xpp3</module>
   </modules>
+  
+  <build>
+    <plugins>
+       <!-- Skip deployment of 3rd party plugins. This causes problems when 
+            deploying snapshots because the 3rd party plugins don't have a 
+            snapshot version. -->
+       <plugin>
+         <artifactId>maven-deploy-plugin</artifactId>
+         <configuration>
+           <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 
 </project>