<?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>
|
|
<groupId>com.fzzy</groupId>
|
<artifactId>fzzy-igdss-core</artifactId>
|
<version>${fzzy.igdss.version}</version>
|
|
<parent>
|
<artifactId>fzzy-igdss-parent</artifactId>
|
<groupId>com.fzzy</groupId>
|
<version>2.0.0</version>
|
<relativePath>../fzzy-igdss-parent/pom.xml</relativePath>
|
</parent>
|
|
|
<description>
|
业务核心模块
|
</description>
|
|
<dependencies>
|
|
<!-- 引入框架-->
|
<dependency>
|
<groupId>com.fzzy</groupId>
|
<artifactId>fzzy-framework</artifactId>
|
<version>${fzzy.frame.version}</version>
|
</dependency>
|
|
<!--定时任务-->
|
<dependency>
|
<groupId>com.fzzy</groupId>
|
<artifactId>fzzy-quartz</artifactId>
|
<version>${fzzy.frame.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>net.sf.ehcache</groupId>
|
<artifactId>ehcache-core</artifactId>
|
<version>2.6.3</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.codehaus.jackson</groupId>
|
<artifactId>jackson-mapper-asl</artifactId>
|
<version>1.9.11</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.velocity</groupId>
|
<artifactId>velocity</artifactId>
|
<version>1.7</version>
|
</dependency>
|
|
<!--onvif协议实现-->
|
<dependency>
|
<groupId>com.ld.onvif</groupId>
|
<artifactId>ld-onvif</artifactId>
|
<version>1.0.0-RELEASE</version>
|
</dependency>
|
|
|
<!-- word导出 方式一:poi-tl-->
|
<!-- poi-tl是基于Apache POI的Word模板引擎。poi-tl依赖的是poi3.16版本 -->
|
<dependency>
|
<groupId>com.deepoove</groupId>
|
<artifactId>poi-tl</artifactId>
|
<version>1.7.3</version>
|
</dependency>
|
<!-- 上面需要的依赖-->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>4.1.2</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml-schemas</artifactId>
|
<version>4.1.2</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi</artifactId>
|
<version>4.1.2</version>
|
</dependency>
|
|
<!-- -->
|
<dependency>
|
<groupId>com.aspose</groupId>
|
<artifactId>aspose-words</artifactId>
|
<version>15.8.0-jdk</version>
|
<scope>system</scope>
|
<systemPath>${project.basedir}/src/main/resources/lib/aspose-words-15.8.0-jdk16.jar</systemPath>
|
</dependency>
|
|
<!-- -->
|
<dependency>
|
<groupId>aspose.slides</groupId>
|
<artifactId>aspose-slides</artifactId>
|
<version>19.3</version>
|
<scope>system</scope>
|
<systemPath>${project.basedir}/src/main/resources/lib/aspose-slides-19.3.jar</systemPath>
|
</dependency>
|
</dependencies>
|
|
|
<build>
|
<resources>
|
<resource>
|
<directory>src/main/resources</directory>
|
<includes>
|
<include>**/*.xml</include>
|
<include>**/*.properties</include>
|
</includes>
|
<filtering>false</filtering>
|
</resource>
|
|
<resource>
|
<directory>src/main/java</directory>
|
<includes>
|
<include>**/*.xml</include>
|
</includes>
|
</resource>
|
</resources>
|
</build>
|
|
</project>
|