You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by cw...@apache.org on 2013/11/09 19:33:56 UTC

svn commit: r1540363 - /uima/sandbox/uima-ducc/trunk/pom.xml

Author: cwiklik
Date: Sat Nov  9 18:33:55 2013
New Revision: 1540363

URL: http://svn.apache.org/r1540363
Log:
UIMA-2881 override default assembly plugin

Modified:
    uima/sandbox/uima-ducc/trunk/pom.xml

Modified: uima/sandbox/uima-ducc/trunk/pom.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/pom.xml?rev=1540363&r1=1540362&r2=1540363&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/pom.xml (original)
+++ uima/sandbox/uima-ducc/trunk/pom.xml Sat Nov  9 18:33:55 2013
@@ -407,7 +407,38 @@
 							</execution>
 						</executions>
 					</plugin>
-
+	    <!-- Override default assemble plug-in to use newer version of assembly plugin
+	         Version 2.4 fixes a bug http://jira.codehaus.org/browse/PLXCOMP-176
+	     -->
+	    <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <version>2.4</version>
+        <executions>
+          <execution>
+            <id>default-cli</id>
+            <configuration>
+              <descriptors>
+                <descriptor>do-not-use--mvn-assembly-assembly--instead-use-mvn-install</descriptor>
+              </descriptors>
+            </configuration>
+          </execution>
+          <execution>
+            <id>uima-distr</id>
+            <phase>integration-test</phase>
+            <goals>
+              <goal>single</goal>
+            </goals>
+            <configuration>
+              <descriptors>
+                <descriptor>src/main/assembly/bin.xml</descriptor>
+              </descriptors>
+              <finalName>uima-ducc-${project.version}</finalName>
+              <tarLongFileMode>gnu</tarLongFileMode>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      		
 			<!-- run Release Audit Tool (RAT) on src and bin distrs -->
 			<!-- plugin> 
 			  <groupId>org.apache.rat</groupId>