build failure of neutron 69/23969/3
authorIsaku Yamahata <isaku.yamahata@intel.com>
Fri, 10 Jul 2015 06:55:59 +0000 (23:55 -0700)
committerRyan Moats <rmoats@us.ibm.com>
Fri, 10 Jul 2015 15:38:29 +0000 (15:38 +0000)
Building with -DskipITs or -DskipTests leads to a failure when
/neutron/integration/test/target/site does not exist.

Change toplevel antrun move directives to not fail on error
as this error is not critical

Change-Id: If64c53ada8414d82c9fd389d0d754bb219764e12
Signed-off-by: Isaku Yamahata <isaku.yamahata@intel.com>
pom.xml

diff --git a/pom.xml b/pom.xml
index bce204ef5cb0f978098eb010a78490e0040ab8ec..f55b6dc8be87f0da32e163bcebcf6937d8e73b19 100644 (file)
--- a/pom.xml
+++ b/pom.xml
             </goals>
             <configuration>
               <target>
-                <move todir="target/site">
+                <move todir="target/site" failonerror="false">
                   <fileset dir="integration/test/target/site" />
                 </move>
-                <move file="integration/test/target/jacoco-it.exec" todir="target" />
+                <move file="integration/test/target/jacoco-it.exec" todir="target" failonerror="false" />
               </target>
             </configuration>
           </execution>