[jbpm-commits] JBoss JBPM SVN: r4693 - jbpm4/trunk/qa.

do-not-reply at jboss.org do-not-reply at jboss.org
Sat May 2 12:36:42 EDT 2009


Author: tom.baeyens at jboss.com
Date: 2009-05-02 12:36:41 -0400 (Sat, 02 May 2009)
New Revision: 4693

Modified:
   jbpm4/trunk/qa/build.xml
Log:
fixed copying of specific db jdbc properties

Modified: jbpm4/trunk/qa/build.xml
===================================================================
--- jbpm4/trunk/qa/build.xml	2009-05-02 08:22:17 UTC (rev 4692)
+++ jbpm4/trunk/qa/build.xml	2009-05-02 16:36:41 UTC (rev 4693)
@@ -41,10 +41,17 @@
 
 	<target name="integration.testrun.setup" depends="log.properties">
 		<antcall target="reinstall.jbpm" />
+    <copy file="db/${database}.properties" 
+          todir="${jbpm.home}/db/jdbc" 
+          overwrite="true" 
+          failonerror="false" />
+    <copy file="${user.home}/.jbpm4/db/${database}.properties" 
+          todir="${jbpm.home}/db/jdbc" 
+          overwrite="true" 
+          failonerror="false" />
     <ant antfile="${jbpm.home}/jboss/build.xml" target="reinstall.jboss" />
     <ant antfile="${jbpm.home}/jboss/build.xml" target="install.jbpm.into.jboss" />
     <ant antfile="${jbpm.home}/jboss/build.xml" target="start.jboss" />
-		<copy file="db/${database}.properties" tofile="${jbpm.home}/db/jdbc/${database}.properties" overwrite="true" />
     <ant antfile="${jbpm.home}/db/build.xml" target="create.jbpm.schema" />
 	</target>
 




More information about the jbpm-commits mailing list