<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="http://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    jBPM3 Building the Installer
</h3>
<span style="margin-bottom: 10px;">
    modified by <a href="http://community.jboss.org/people/admin">Administrator Administrator</a> in <i>jBPM</i> - <a href="http://community.jboss.org/docs/DOC-12866">View the full document</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>jBPM uses the <a class="jive-link-external-small" href="http://izpack.org/">IzPack</a> installer for deployment on supported target containers.</p><h3>Build the Installer</h3><p>The default settings for supported databases and containers are provided in a <a class="jive-link-external-small" href="http://maven.apache.org/guides/introduction/introduction-to-profiles.html">Maven profile descriptor</a>. To setup the profile you can either copy the <tt>profiles.example.xml</tt> provided in the project base directory to <tt>profiles.xml</tt> and edit it the properties accordingly. Alternatively, you can define this profile in your <tt>settings.xml</tt> file.</p><pre class="jive-pre"><code class="jive-code jive-xml"><span class="jive-xml-tag">&lt;?xml version="1.0"?&gt;</span>
<span class="jive-xml-tag"><span>&lt;profilesXml xmlns="</span><a class="jive-link-external-small" href="http://maven.apache.org/PROFILES/1.0.0" target="_blank">http://maven.apache.org/PROFILES/1.0.0</a><span>"
&#160; xmlns:xsi="</span><a class="jive-link-external-small" href="http://www.w3.org/2001/XMLSchema-instance" target="_blank">http://www.w3.org/2001/XMLSchema-instance</a><span>"
&#160; xsi:schemaLocation="</span><a class="jive-link-external-small" href="http://maven.apache.org/PROFILES/1.0.0" target="_blank">http://maven.apache.org/PROFILES/1.0.0</a><span> </span><a class="jive-link-external-small" href="http://maven.apache.org/xsd/profiles-1.0.0.xsd" target="_blank">http://maven.apache.org/xsd/profiles-1.0.0.xsd</a><span>"&gt;</span></span>
&#160; <span class="jive-xml-tag">&lt;profiles&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-comment">&lt;!-- This profile can also be defined in ~/.m2/settings.xml --&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;profile&gt;</span>
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;id&gt;</span>dev-local<span class="jive-xml-tag">&lt;/id&gt;</span>

&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;properties&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.db2.server&gt;</span>localhost<span class="jive-xml-tag">&lt;/jdbc.db2.server&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.db2.port&gt;</span>50000<span class="jive-xml-tag">&lt;/jdbc.db2.port&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.db2.database&gt;</span>jbpm3<span class="jive-xml-tag">&lt;/jdbc.db2.database&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.db2.url&gt;</span>jdbc:db2://${jdbc.db2.server}:${jdbc.db2.port}/${jdbc.db2.database}<span class="jive-xml-tag">&lt;/jdbc.db2.url&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.db2.username&gt;</span>jbpm3<span class="jive-xml-tag">&lt;/jdbc.db2.username&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.db2.password&gt;</span>jbpm3<span class="jive-xml-tag">&lt;/jdbc.db2.password&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.db2.driver&gt;</span>com.ibm.db2.jcc.DB2Driver<span class="jive-xml-tag">&lt;/jdbc.db2.driver&gt;</span>

&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.mssql.server&gt;</span>dev30.qa.atl.jboss.com<span class="jive-xml-tag">&lt;/jdbc.mssql.server&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.mssql.port&gt;</span>3918<span class="jive-xml-tag">&lt;/jdbc.mssql.port&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.mssql.database&gt;</span>jbpm<span class="jive-xml-tag">&lt;/jdbc.mssql.database&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.mssql.url&gt;</span>jdbc:sqlserver://${jdbc.mssql.server}:${jdbc.mssql.port};databaseName=${jdbc.mssql.database}<span class="jive-xml-tag">&lt;/jdbc.mssql.url&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.mssql.username&gt;</span>jbpm<span class="jive-xml-tag">&lt;/jdbc.mssql.username&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.mssql.password&gt;</span>jbpm<span class="jive-xml-tag">&lt;/jdbc.mssql.password&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.mssql.driver&gt;</span>com.microsoft.sqlserver.jdbc.SQLServerDriver<span class="jive-xml-tag">&lt;/jdbc.mssql.driver&gt;</span>

&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.mysql.server&gt;</span>localhost<span class="jive-xml-tag">&lt;/jdbc.mysql.server&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.mysql.port&gt;</span>3306<span class="jive-xml-tag">&lt;/jdbc.mysql.port&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.mysql.database&gt;</span>jbpm3<span class="jive-xml-tag">&lt;/jdbc.mysql.database&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.mysql.url&gt;</span>jdbc:mysql://${jdbc.mysql.server}:${jdbc.mysql.port}/${jdbc.mysql.database}<span class="jive-xml-tag">&lt;/jdbc.mysql.url&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.mysql.username&gt;</span>jbpm3<span class="jive-xml-tag">&lt;/jdbc.mysql.username&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.mysql.password&gt;</span>jbpm3<span class="jive-xml-tag">&lt;/jdbc.mysql.password&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.mysql.driver&gt;</span>com.mysql.jdbc.Driver<span class="jive-xml-tag">&lt;/jdbc.mysql.driver&gt;</span>

&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.oracle.server&gt;</span>localhost<span class="jive-xml-tag">&lt;/jdbc.oracle.server&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.oracle.port&gt;</span>1521<span class="jive-xml-tag">&lt;/jdbc.oracle.port&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.oracle.database&gt;</span>XE<span class="jive-xml-tag">&lt;/jdbc.oracle.database&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.oracle.url&gt;</span>jdbc:oracle:thin:@${jdbc.oracle.server}:${jdbc.oracle.port}:${jdbc.oracle.database}<span class="jive-xml-tag">&lt;/jdbc.oracle.url&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.oracle.username&gt;</span>jbpm3<span class="jive-xml-tag">&lt;/jdbc.oracle.username&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.oracle.password&gt;</span>jbpm3<span class="jive-xml-tag">&lt;/jdbc.oracle.password&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.oracle.driver&gt;</span>oracle.jdbc.driver.OracleDriver<span class="jive-xml-tag">&lt;/jdbc.oracle.driver&gt;</span>

&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.postgresql.server&gt;</span>localhost<span class="jive-xml-tag">&lt;/jdbc.postgresql.server&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.postgresql.port&gt;</span>5432<span class="jive-xml-tag">&lt;/jdbc.postgresql.port&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.postgresql.database&gt;</span>jbpm3<span class="jive-xml-tag">&lt;/jdbc.postgresql.database&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.postgresql.url&gt;</span>jdbc:postgresql://${jdbc.postgresql.server}:${jdbc.postgresql.port}/${jdbc.postgresql.database}<span class="jive-xml-tag">&lt;/jdbc.postgresql.url&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.postgresql.username&gt;</span>jbpm3<span class="jive-xml-tag">&lt;/jdbc.postgresql.username&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.postgresql.password&gt;</span>jbpm3<span class="jive-xml-tag">&lt;/jdbc.postgresql.password&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.postgresql.driver&gt;</span>org.postgresql.Driver<span class="jive-xml-tag">&lt;/jdbc.postgresql.driver&gt;</span>

&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.sybase.server&gt;</span>localhost<span class="jive-xml-tag">&lt;/jdbc.sybase.server&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.sybase.port&gt;</span>5000<span class="jive-xml-tag">&lt;/jdbc.sybase.port&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.sybase.database&gt;</span>jbpm3<span class="jive-xml-tag">&lt;/jdbc.sybase.database&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.sybase.url&gt;</span>jdbc:sybase:Tds:${jdbc.sybase.server}:${jdbc.sybase.port}/${jdbc.sybase.database}<span class="jive-xml-tag">&lt;/jdbc.sybase.url&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.sybase.username&gt;</span>jbpm3<span class="jive-xml-tag">&lt;/jdbc.sybase.username&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.sybase.password&gt;</span>jbpm3jbpm3<span class="jive-xml-tag">&lt;/jdbc.sybase.password&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.sybase.driver&gt;</span>com.sybase.jdbc3.jdbc.SybDriver<span class="jive-xml-tag">&lt;/jdbc.sybase.driver&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jdbc.sybase.datasource&gt;</span>com.sybase.jdbc3.jdbc.SybXADataSource<span class="jive-xml-tag">&lt;/jdbc.sybase.datasource&gt;</span>

&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jboss405.home&gt;</span>$USER_HOME/jboss-4.0.5.GA<span class="jive-xml-tag">&lt;/jboss405.home&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jboss423.home&gt;</span>$USER_HOME/jboss-4.2.3.GA<span class="jive-xml-tag">&lt;/jboss423.home&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jboss501.home&gt;</span>$USER_HOME/jboss-5.0.1.GA<span class="jive-xml-tag">&lt;/jboss501.home&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jboss510.home&gt;</span>$USER_HOME/jboss-5.1.0.GA<span class="jive-xml-tag">&lt;/jboss510.home&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jboss.server&gt;</span>all<span class="jive-xml-tag">&lt;/jboss.server&gt;</span>

&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;jbpm.home&gt;</span>$USER_HOME/jbpm-${project.version}<span class="jive-xml-tag">&lt;/jbpm.home&gt;</span>
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/properties&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/profile&gt;</span>
&#160; <span class="jive-xml-tag">&lt;/profiles&gt;</span>

&#160; <span class="jive-xml-tag">&lt;activeProfiles&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;activeProfile&gt;</span>dev-local<span class="jive-xml-tag">&lt;/activeProfile&gt;</span>
&#160; <span class="jive-xml-tag">&lt;/activeProfiles&gt;</span>
<span class="jive-xml-tag">&lt;/profilesXml&gt;</span></code></pre><p>Once you have configured the properties,&#160; you can proceed to build the binary distribution.</p><pre class="jive-pre"><code class="jive-code">[aguizar@siankaan jbpm-3.2-soa]$ mvn -Pdistro clean install
...
[INFO] Installing /home/aguizar/jbpm/jbpm3/branches/jbpm-3.2-soa/modules/distribution/target/jbpm-installer-3.2.10-SNAPSHOT.jar to /home/aguizar/.m2/repository/org/jbpm/jbpm3/jbpm-distribution/3.2.10-SNAPSHOT/jbpm-distribution-3.2.10-SNAPSHOT-installer.jar
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] ------------------------------------------------------------------------
[INFO] JBoss jBPM3 ........................................... SUCCESS [7.423s]
[INFO] JBoss jBPM3 - Core .................................... SUCCESS [45.132s]
[INFO] JBoss jBPM3 - Identity ................................ SUCCESS [6.501s]
[INFO] JBoss jBPM3 - Enterprise .............................. SUCCESS [8.366s]
[INFO] JBoss jBPM3 - Examples ................................ SUCCESS [3.152s]
[INFO] JBoss jBPM3 - Simulation .............................. SUCCESS [10.477s]
[INFO] JBoss jBPM3 - Database ................................ SUCCESS [17.333s]
[INFO] JBoss jBPM3 - Userguide ............................... SUCCESS [17.634s]
[INFO] JBoss jBPM3 - Distribution ............................ SUCCESS [24.497s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESSFUL
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2 minutes 22 seconds
[INFO] Finished at: Thu Jul 29 11:07:44 CDT 2010
[INFO] Final Memory: 105M/194M
</code></pre><h3>Run the Installer</h3><p>To install jBPM, run the generated installer.</p><pre class="jive-pre"><code class="jive-code">java -jar modules/distribution/target/jbpm-installer-3.2.10-SNAPSHOT.jar
</code></pre><p>Follow the instructions on the installer panels.</p><p><a href="http://www.jboss.org/community/servlet/JiveServlet/downloadImage/1061/jBPMInstaller1.png"><span> http://www.jboss.org/community/servlet/JiveServlet/downloadImage/1061/jBPMInstaller1.png </span></a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><a href="http://www.jboss.org/community/servlet/JiveServlet/downloadImage/1062/jBPMInstaller2.png"><span> http://www.jboss.org/community/servlet/JiveServlet/downloadImage/1062/jBPMInstaller2.png </span></a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><a href="http://www.jboss.org/community/servlet/JiveServlet/downloadImage/1063/jBPMInstaller3.png"><span> http://www.jboss.org/community/servlet/JiveServlet/downloadImage/1063/jBPMInstaller3.png </span></a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><a href="http://www.jboss.org/community/servlet/JiveServlet/downloadImage/1064/jBPMInstaller4.png"><span> http://www.jboss.org/community/servlet/JiveServlet/downloadImage/1064/jBPMInstaller4.png </span></a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><a href="http://www.jboss.org/community/servlet/JiveServlet/downloadImage/1066/jBPMInstaller5.png"><span> http://www.jboss.org/community/servlet/JiveServlet/downloadImage/1066/jBPMInstaller5.png </span></a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><a href="http://www.jboss.org/community/servlet/JiveServlet/downloadImage/1067/jBPMInstaller6.png"><span> http://www.jboss.org/community/servlet/JiveServlet/downloadImage/1067/jBPMInstaller6.png </span></a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><a href="http://community.jboss.org/servlet/JiveServlet/showImage/102-12866-9-1068/jBPMInstaller7.png"><span> http://community.jboss.org/servlet/JiveServlet/downloadImage/102-12866-9-1068/450-330/jBPMInstaller7.png </span></a></p><h2>Modifying the Installation Packs</h2><p><em>Note: this information is outdated.</em></p><p>The installer build uses the <a class="jive-link-external-small" href="http://maven.apache.org/plugins/maven-assembly-plugin">maven-assembly-plugin</a> to collect all the dependencies in the <tt>target/deploy-artifacts</tt> directory. This directory is the source of everything that gets distributed with the installer. If an artifact is not in <tt>target/deploy-artifacts</tt> it cannot go into the installer. Have a look at <tt>scripts/assembly-deploy-artifacts.xml</tt> for the assembly plugin descriptor.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>The IzPack compiler is run from the <a class="jive-link-external-small" href="http://maven.apache.org/plugins/maven-antrun-plugin">maven-antrun-plugin</a>. Have a look at <tt>scripts/antrun-installer.xml</tt> for details.</p><p>The install packs themselves are defined in <tt>resources/installer/install-definitions.xml</tt>. The standalone pack is quite intuitively defined like this.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><pre class="jive-pre"><code class="jive-code jive-xml">&#160;&#160;&#160; <span class="jive-xml-comment">&lt;!-- jBPM3 Standalone --&gt;
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;pack name="jBPM3 Standalone" required="yes" preselected="yes"&gt;</span>
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;description&gt;</span>The jBPM3 Standalone Components<span class="jive-xml-tag">&lt;/description&gt;</span>
&#160;&#160;&#160;&#160;&#160; 
&#160;&#160;&#160;&#160;&#160; &lt;!-- jbpm3/config --&gt;
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;file src="@{deploy.artifacts.dir}/lib/jbpm-core-config.zip" targetdir="$INSTALL_PATH/jbpm3/config"
&#160;&#160;&#160;&#160;&#160;&#160;&#160; unpack="true" override="true" /&gt;</span>
&#160;&#160;&#160;&#160;&#160; 
&#160;&#160;&#160;&#160;&#160; &lt;!-- jbpm3/docs --&gt;
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;file src="@{deploy.artifacts.dir}/lib/jbpm-userguide.zip" targetdir="$INSTALL_PATH/jbpm3/docs/userguide"
&#160;&#160;&#160;&#160;&#160;&#160;&#160; unpack="true" override="true" /&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; 
&#160;&#160;&#160;&#160;&#160; &lt;!-- jbpm3/lib --&gt;
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;fileset dir="@{deploy.artifacts.dir}/lib" targetdir="$INSTALL_PATH/jbpm3/lib" override="true"&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="jbpm-enterprise.jar" /&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="jbpm-core.jar" /&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="jbpm-identity.jar" /&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; 
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="activation.jar" /&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="antlr.jar" /&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="asm.jar" /&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="bsh.jar" /&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="cglib.jar" /&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="commons-collections.jar" /&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="commons-logging.jar" /&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="dom4j.jar" /&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="hibernate.jar" /&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="hsqldb.jar" /&gt;</span>
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/fileset&gt;</span>
&#160;&#160;&#160;&#160;&#160; 
&#160;&#160;&#160;&#160;&#160; &lt;!-- jbpm3/src --&gt;</span>
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;fileset dir="@{deploy.artifacts.dir}/src" targetdir="$INSTALL_PATH/jbpm3/src" override="true"&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="jbpm-core-sources.jar" /&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="jbpm-identity-sources.jar" /&gt;</span>
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/fileset&gt;</span>
&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/pack&gt;</span>

</code></pre></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Comment by <a href="http://community.jboss.org/docs/DOC-12866">going to Community</a></p>

        <p style="margin: 0;">Create a new document in jBPM at <a href="http://community.jboss.org/choose-container!input.jspa?contentType=102&containerType=14&container=2034">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>