Hi, I used your build.xml as a starting point and tried to accomplish the same thing (deploying a process with ant).
It worked, but see my new post about hibernate.properties problems. Here's my build.xml: <?xml version="1.0"?> | <project name="Hello jBPM" default="Main Build"> | <description> | description | </description> | | <target name="Main Build"> | <taskdef name="deploypar" classname="org.jbpm.ant.DeployProcessTask"> | <classpath> | <pathelement path="src/config.files/" /> | <pathelement path="build/jbpm-3.1.jar" /> | <fileset dir="lib/jboss" includes="*.jar"/> | <fileset dir="lib/hibernate" includes="*.jar"/> | <pathelement path="build/classes.identity/" /> | <fileset dir="lib/dom4j" /> | <pathelement path="../jbpm-db/mssql/lib/jtds-1.2.jar" /> | </classpath> | </taskdef> | <deploypar | process="build/websale.process" | cfg="src/config.files/npg-hibernate.cfg.xml" | /> | </target> | </project> Fred View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3935852#3935852 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3935852 ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
