Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Magnolia's WebLogic WAR file comes without the workflow module. The reason behind this is to prevent this issue. However, if you need the workflow module working with WebLogic, besides installing it, you have the following options:

...

Option 2: Using Maven

Add the following dependencies to your project:

Code Block
languagexml
<dependency>
	<groupId>org.jbpm</groupId>
	<artifactId>jbpm-human-task-core</artifactId>
	<version>6.2.0.Final</version>
</dependency>
<dependency>
  <groupId>org.jbpm</groupId>
  <artifactId>jbpm-audit</artifactId>
  <version>6.2.0.Final</version>
</dependency>
<dependency>
  <groupId>org.codehaus.janino</groupId>
  <artifactId>janino</artifactId>
  <version>2.5.16</version>
</dependency>

...