43 lines
1.2 KiB
XML
43 lines
1.2 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>
|
|
|
|
<groupId>com.inteligr8.alfresco.activiti</groupId>
|
|
<artifactId>async-activiti-app-ext</artifactId>
|
|
|
|
<name>Improved Async Execution for APS</name>
|
|
<description>An Alfresco Process Services extension providing multiple thread pool support.</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.inteligr8.activiti</groupId>
|
|
<artifactId>async-activiti-ext</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.activiti</groupId>
|
|
<artifactId>activiti-app-logic</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>io.repaint.maven</groupId>
|
|
<artifactId>tiles-maven-plugin</artifactId>
|
|
<extensions>true</extensions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|