Author: assaf
Date: Wed Sep 6 08:34:26 2006
New Revision: 440735
URL: http://svn.apache.org/viewvc?view=rev&rev=440735
Log: (empty)
Added:
incubator/ode/trunk/bpel-runtime/build.xml (with props)
Added: incubator/ode/trunk/bpel-runtime/build.xml
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-runtime/build.xml?view=auto&rev=440735
==============================================================================
--- incubator/ode/trunk/bpel-runtime/build.xml (added)
+++ incubator/ode/trunk/bpel-runtime/build.xml Wed Sep 6 08:34:26 2006
@@ -0,0 +1,23 @@
+<project name="bpel-runtime" xmlns:artifact="urn:maven-artifact-ant">
+
+ <typedef resource="org/apache/maven/artifact/ant/antlib.xml"
uri="urn:maven-artifact-ant">
+ <classpath>
+ <pathelement location="lib/maven-artifact-ant-2.0.4-dep.jar" />
+ </classpath>
+ </typedef>
+
+ <target name="test-db">
+ <artifact:pom id="maven.project" file="pom.xml" />
+ <artifact:dependencies filesetId="dependency.derby" useScope="runtime">
+ <dependency groupId="ode" artifactId="ode-dao-hibernate-db-derby"
+ version="${maven.project.version}" type="tar"/>
+ </artifact:dependencies>
+ <copy todir="${maven.project.build.directory}/scratch" flatten="true">
+ <fileSet refid="dependency.derby"/>
+ </copy>
+ <untar
src="${maven.project.build.directory}/scratch/ode-dao-hibernate-db-derby-${maven.project.version}.tar"
+ dest="${maven.project.build.directory}/test-classes/derby-db"/>
+ </target>
+
+</project>
+
Propchange: incubator/ode/trunk/bpel-runtime/build.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: incubator/ode/trunk/bpel-runtime/build.xml
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: incubator/ode/trunk/bpel-runtime/build.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml