You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2014/01/17 20:23:48 UTC

svn commit: r1559229 - /uima/build/trunk/parent-pom/pom.xml

Author: schor
Date: Fri Jan 17 19:23:48 2014
New Revision: 1559229

URL: http://svn.apache.org/r1559229
Log:
[UIMA-3557] add failonerror to certain ant tasks

Modified:
    uima/build/trunk/parent-pom/pom.xml

Modified: uima/build/trunk/parent-pom/pom.xml
URL: http://svn.apache.org/viewvc/uima/build/trunk/parent-pom/pom.xml?rev=1559229&r1=1559228&r2=1559229&view=diff
==============================================================================
--- uima/build/trunk/parent-pom/pom.xml (original)
+++ uima/build/trunk/parent-pom/pom.xml Fri Jan 17 19:23:48 2014
@@ -829,7 +829,7 @@ Copyright (c) 2003, 2006 IBM Corporation
                         <checksum format="MD5SUM" algorithm="sha1" file="${source-release}" />
                         <checksum format="MD5SUM" algorithm="md5" file="${source-release}" />
                         <echo message="Generating gpg signatures for source-release.zip" />
-                        <exec executable="gpg">
+                        <exec executable="gpg" failonerror="true">
                           <arg value="--detach-sign" />
                           <arg value="--armor" />
                           <arg value="--batch" />
@@ -1709,7 +1709,7 @@ Copyright (c) 2003, 2006 IBM Corporation
     
 		                    <echo>checking out eclipse update subsite ${eclipseUpdateSiteComponent} from dist ...release...</echo>
 		                    <delete dir="${eclipseUpdateSubSite}" quiet="true" />
-		                    <exec executable="svn">
+		                    <exec executable="svn" failonerror="true">
 		                      <arg value="checkout" />
 		                      <arg value="${distsvnroot}repos/dist/release/uima/eclipse-update-site/${eclipseUpdateSiteComponent}" />
 		                      <arg value="${eclipseUpdateSubSite}" />
@@ -1747,7 +1747,7 @@ Copyright (c) 2003, 2006 IBM Corporation
 		                </java>
 		 
 		                <!-- copy also the original unpacked jars to the subsite in the plugins dir -->               
-		                <copy todir="${eusWork}/plugins">
+		                <copy todir="${eusWork}/plugins" failonerror="true">
 		                  <fileset dir="${toBePacked}" />
 		                </copy>
 		                
@@ -1827,7 +1827,7 @@ Copyright (c) 2003, 2006 IBM Corporation
 		                    </checksum>
 		
 		                    <echo message="Generating gpg signatures for new features and plugins" />
-		                    <apply executable="gpg" dir="${eusWork}"> 
+		                    <apply executable="gpg" dir="${eusWork}" failonerror="true"> 
 		                      <arg value="--detach-sign" />
 		                      <arg value="--armor" />
 		                      <!-- batch flag needed to avoid gpg hang up -->
@@ -1839,7 +1839,7 @@ Copyright (c) 2003, 2006 IBM Corporation
 		                    </apply> 
 		                    
 		                    <echo message="Copying the checksums and signatures to the update subsite" />
-		                    <copy todir="${eclipseUpdateSubSite}">
+		                    <copy todir="${eclipseUpdateSubSite}" failonerror="true">
 		                      <fileset dir="${eusWork}">
 		                        <include name="**/*.asc" />
 		                        <include name="**/*.md5" />
@@ -1868,7 +1868,7 @@ Copyright (c) 2003, 2006 IBM Corporation
 		                    </checksum>
 		
 		                    <echo message="Generating gpg signatures for artifacts.jar and content.jar" />
-		                    <apply executable="gpg" dir="${eclipseUpdateSubSite}"> 
+		                    <apply executable="gpg" dir="${eclipseUpdateSubSite}" failonerror="true"> 
 		                      <arg value="--detach-sign" />
 		                      <arg value="--armor" />
 		                      <!-- batch flag needed to avoid gpg hang up -->