jbpm-human-task
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.jbpm</groupId>
<artifactId>jbpm-human-task</artifactId>
<version>7.74.1.Final</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jbpm</groupId>
<artifactId>jbpm</artifactId>
<version>7.74.1.Final</version>
</parent>
<artifactId>jbpm-human-task</artifactId>
<name>jBPM :: Human Task</name>
<packaging>pom</packaging>
<modules>
<module>jbpm-human-task-core</module>
<module>jbpm-human-task-workitems</module>
<module>jbpm-human-task-audit</module>
<module>jbpm-human-task-jpa</module>
</modules>
<dependencies>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
</dependency>
<!-- test -->
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.narayana.jta</groupId>
<artifactId>narayana-jta</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss</groupId>
<artifactId>jboss-transaction-spi-jakarta</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.tx.type>JTA</maven.tx.type>
<maven.data.source><jta-data-source>jdbc/jbpm-ds</jta-data-source></maven.data.source>
</properties>
<build>
<plugins>
<plugin>
<!-- ensure that db files are deleted before _any_ run
otherwise we get tests failing because of leftover db's/tx logs -->
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<directory>${basedir}</directory>
<includes>
<include>btm*</include>
<include>*.db</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>
</build>
</project>