83 lines
2.6 KiB
XML
Executable File
83 lines
2.6 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>base</artifactId>
|
|
<name>Base</name>
|
|
<version>2.1</version>
|
|
<packaging>pom</packaging>
|
|
<properties>
|
|
<drools.version>6.1.0.Final</drools.version>
|
|
<jbpm.version>6.1.0.Final</jbpm.version>
|
|
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
|
|
</properties>
|
|
<modules>
|
|
<module>dto</module>
|
|
<module>bpm</module>
|
|
<module>persistence</module>
|
|
<module>core</module>
|
|
<module>business</module>
|
|
<module>facadeclient</module>
|
|
<module>facade</module>
|
|
<module>sessionbeans</module>
|
|
</modules>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
|
|
<!-- DROOLS -->
|
|
<!-- define drools BOM -->
|
|
<dependency>
|
|
<groupId>org.drools</groupId>
|
|
<artifactId>drools-bom</artifactId>
|
|
<type>pom</type>
|
|
<version>${drools.version}</version>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
|
|
<!-- define drools BOM -->
|
|
<dependency>
|
|
<groupId>org.jbpm</groupId>
|
|
<artifactId>jbpm-bom</artifactId>
|
|
<type>pom</type>
|
|
<version>${jbpm.version}</version>
|
|
<scope>import</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>
|