You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by se...@apache.org on 2010/09/11 16:47:50 UTC

svn commit: r996153 - /directory/studio/trunk/application/pom.xml

Author: seelmann
Date: Sat Sep 11 14:47:50 2010
New Revision: 996153

URL: http://svn.apache.org/viewvc?rev=996153&view=rev
Log:
Avoid deployment of applications

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

Modified: directory/studio/trunk/application/pom.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/application/pom.xml?rev=996153&r1=996152&r2=996153&view=diff
==============================================================================
--- directory/studio/trunk/application/pom.xml (original)
+++ directory/studio/trunk/application/pom.xml Sat Sep 11 14:47:50 2010
@@ -127,6 +127,13 @@
           </execution>
         </executions>
       </plugin>
+      <!-- Skip deployment of applications, it's just a waste of space. -->
+      <plugin>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+       </configuration>
+      </plugin>
     </plugins>
   </build>