48 lines
1.3 KiB
XML
48 lines
1.3 KiB
XML
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>com.inteligr8.activiti</groupId>
|
|
<artifactId>async-activiti-ext-parent</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<relativePath>../</relativePath>
|
|
</parent>
|
|
<artifactId>async-activiti-ext</artifactId>
|
|
|
|
<name>Improved Async Execution for Activiti</name>
|
|
|
|
<dependencies>
|
|
<!-- Whereever this extension is deployed, Activiti is assumed to already be there -->
|
|
<!-- This includes when running the `rad` profile. -->
|
|
<dependency>
|
|
<groupId>org.activiti</groupId>
|
|
<artifactId>activiti-spring</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.activiti</groupId>
|
|
<artifactId>activiti-app-logic</artifactId>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>*</groupId>
|
|
<artifactId>*</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>io.repaint.maven</groupId>
|
|
<artifactId>tiles-maven-plugin</artifactId>
|
|
<extensions>true</extensions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|