1

ant を使用して JBPM プロセス定義をデプロイする際に、どのような団体でも支援できますか。

その展開プロセスで、私はこのエラーに直面しています:

[deployToServer] パーを展開しています ...

BUILD FAILED F:\JBPM_NEW_GRAILS_WORKSPACE\jbpm5webexample\build.xml:43: プロセス アーカイブをデプロイできませんでした: null

私のBuild.xmlファイルはbuild.xmlエントリのプロセス展開用です:

<target name="deployProcess" description="deploys the process definition">
   <echo>Deploy the process definition</echo>
   <taskdef name="deployToServer" classname="org.jbpm.ant.DeployProcessToServerTask">
        <classpath refid="exec-classpath"/>
   </taskdef>
   <deployToServer username="root" password="root" serverDeployer="/jbpm5webexample/TaskProcessServlet?action=CreateProcess">
    <fileset dir="${basedir}/src/main/resources" includes="*"/>
   </deployToServer>
   <deployToServer>
    <fileset dir="${basedir}/src/main/resources" includes="*"/>
   </deployToServer>
</target>

<path id="exec-classpath">
        <pathelement path="target/classes" />
        <fileset dir="F:/jbpm-jpdl-3.2.3/lib" includes="**/*.jar" />
        <fileset dir="F:/jbpm-jpdl-3.2.3/" includes="**/*.jar" />
        <fileset dir="C:/java/apache-ant-1.8.1/lib" includes="**/*.jar" />
        <fileset dir="F:/JBPM_NEW_GRAILS_WORKSPACE/jbpm5webexample/src/main/webapp/WEB-INF/lib" includes="**/*.jar" />
        <fileset dir="F:/JBPM_NEW_GRAILS_WORKSPACE/jbpm5webexample/target/jbpm5webexample/WEB-INF/lib" includes="**/*.jar" />
   </path>

このエラーを解決するのを手伝ってください。

4

1 に答える 1

0

jBPM v3 スクリプトを使用して jBPM v5 の例をデプロイしようとしているようですか?

于 2013-06-26T08:28:13.403 に答える