mule-module-jbpm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mule.modules</groupId> <artifactId>mule-module-jbpm</artifactId> <version>3.9.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.mule.modules</groupId> <artifactId>mule-modules</artifactId> <version>3.9.0</version> </parent> <artifactId>mule-module-jbpm</artifactId> <packaging>jar</packaging> <name>BPM Support - JBoss jBPM</name> <description>Classes which allow Mule to integrate with JBoss jBPM via the BPM Module.</description> <properties> <antlrVersion>3.1.1</antlrVersion> <hibernateVersion>3.6.0.Final</hibernateVersion> <jbpmVersion>4.4</jbpmVersion> </properties> <dependencies> <!-- Generic BPM Support --> <dependency> <groupId>org.mule.modules</groupId> <artifactId>mule-module-bpm</artifactId> <version>${project.version}</version> </dependency> <!-- jBPM --> <dependency> <groupId>org.jbpm.jbpm4</groupId> <artifactId>jbpm-jpdl</artifactId> <version>${jbpmVersion}</version> </dependency> <dependency> <groupId>org.jbpm.jbpm4</groupId> <artifactId>jbpm-pvm</artifactId> <version>${jbpmVersion}</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> </exclusion> </exclusions> </dependency> <!-- Hibernate and dependencies --> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>${hibernateVersion}</version> <exclusions> <!-- Make sure we are using the same version as Drools --> <exclusion> <groupId>antlr</groupId> <artifactId>antlr</artifactId> </exclusion> </exclusions> </dependency> <!-- Make sure we are using the same version as Drools --> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr</artifactId> <version>${antlrVersion}</version> <exclusions> <exclusion> <groupId>org.antlr</groupId> <artifactId>stringtemplate</artifactId> </exclusion> <exclusion> <groupId>antlr</groupId> <artifactId>antlr</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>jboss</groupId> <artifactId>javassist</artifactId> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> </dependency> <dependency> <!-- Use this one, already bundled with Mule, juel-api duplicates it and is excluded --> <groupId>org.apache.tomcat</groupId> <artifactId>el-api</artifactId> <version>${tomcatVersion}</version> </dependency> <!-- Needed for org.mule.module.jbpm.MuleSendActivity --> <dependency> <groupId>commons-jxpath</groupId> <artifactId>commons-jxpath</artifactId> </dependency> <!-- Unit tests only --> <dependency> <groupId>org.mule.tests</groupId> <artifactId>mule-tests-functional</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <!-- Simple Java DB for persistence --> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mule.modules</groupId> <artifactId>mule-module-bpm</artifactId> <version>${project.version}</version> <scope>test</scope> <type>test-jar</type> </dependency> <dependency> <groupId>org.mule.transports</groupId> <artifactId>mule-transport-vm</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> </project>