164 lines
5.9 KiB
XML
Executable File
164 lines
5.9 KiB
XML
Executable File
<?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">
|
|
<parent>
|
|
<artifactId>FlipBean</artifactId>
|
|
<groupId>com.fp</groupId>
|
|
<version>2.1</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.fp</groupId>
|
|
<artifactId>clients</artifactId>
|
|
<name>Clients</name>
|
|
<version>2.1</version>
|
|
<packaging>pom</packaging>
|
|
<properties>
|
|
<drools.version>5.5.0.Final</drools.version>
|
|
<jbpm.version>5.4.0.Final</jbpm.version>
|
|
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
|
|
</properties>
|
|
<modules>
|
|
<module>comaco</module>
|
|
</modules>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
|
|
<!-- DROOLS -->
|
|
<dependency>
|
|
<groupId>org.drools</groupId>
|
|
<artifactId>drools-persistence-jpa</artifactId>
|
|
<version>${drools.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.drools</groupId>
|
|
<artifactId>knowledge-api</artifactId>
|
|
<version>${drools.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.drools</groupId>
|
|
<artifactId>knowledge-internal-api</artifactId>
|
|
<version>${drools.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.drools</groupId>
|
|
<artifactId>drools-core</artifactId>
|
|
<version>${drools.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.drools</groupId>
|
|
<artifactId>drools-compiler</artifactId>
|
|
<version>${drools.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.drools</groupId>
|
|
<artifactId>drools-decisiontables</artifactId>
|
|
<version>${drools.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.drools</groupId>
|
|
<artifactId>drools-templates</artifactId>
|
|
<version>${drools.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.mina</groupId>
|
|
<artifactId>mina-core</artifactId>
|
|
<version>2.0.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- JBPM -->
|
|
<dependency>
|
|
<groupId>org.jbpm</groupId>
|
|
<artifactId>jbpm-flow</artifactId>
|
|
<version>${jbpm.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jbpm</groupId>
|
|
<artifactId>jbpm-flow-builder</artifactId>
|
|
<version>${jbpm.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jbpm</groupId>
|
|
<artifactId>jbpm-persistence-jpa</artifactId>
|
|
<version>${jbpm.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jbpm</groupId>
|
|
<artifactId>jbpm-bpmn2</artifactId>
|
|
<version>${jbpm.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jbpm</groupId>
|
|
<artifactId>jbpm-human-task</artifactId>
|
|
<version>${jbpm.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jbpm</groupId>
|
|
<artifactId>jbpm-human-task-core</artifactId>
|
|
<version>${jbpm.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jbpm</groupId>
|
|
<artifactId>jbpm-human-task-mina</artifactId>
|
|
<version>${jbpm.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jbpm</groupId>
|
|
<artifactId>jbpm-bam</artifactId>
|
|
<version>${jbpm.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jbpm</groupId>
|
|
<artifactId>jbpm-workitems</artifactId>
|
|
<version>${jbpm.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!--poi-->
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi</artifactId>
|
|
<version>3.5-FINAL</version>
|
|
<type>jar</type>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml-schemas</artifactId>
|
|
<version>3.6</version>
|
|
<type>jar</type>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>3.5-FINAL</version>
|
|
<type>jar</type>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>ooxml-schemas</artifactId>
|
|
<version>1.0</version>
|
|
<type>jar</type>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</project>
|