108 lines
3.4 KiB
XML
108 lines
3.4 KiB
XML
<?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>
|
||
<groupId>cn.hangtag</groupId>
|
||
<artifactId>hangtag-module-oms</artifactId>
|
||
<version>${revision}</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<artifactId>hangtag-module-oms-biz</artifactId>
|
||
<packaging>jar</packaging>
|
||
|
||
<name>${project.artifactId}</name>
|
||
|
||
|
||
<dependencies>
|
||
|
||
<!-- 业务组件 -->
|
||
|
||
<!-- Web 相关 -->
|
||
<dependency>
|
||
<groupId>cn.hangtag</groupId>
|
||
<artifactId>hangtag-spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.hangtag</groupId>
|
||
<artifactId>hangtag-spring-boot-starter-security</artifactId>
|
||
</dependency>
|
||
|
||
<!-- DB 相关 -->
|
||
<dependency>
|
||
<groupId>cn.hangtag</groupId>
|
||
<artifactId>hangtag-spring-boot-starter-mybatis</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Test 测试相关 -->
|
||
<dependency>
|
||
<groupId>cn.hangtag</groupId>
|
||
<artifactId>hangtag-spring-boot-starter-test</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 工具类相关 -->
|
||
<dependency>
|
||
<groupId>cn.hangtag</groupId>
|
||
<artifactId>hangtag-spring-boot-starter-excel</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>cn.hangtag</groupId>
|
||
<artifactId>hangtag-module-infra-api</artifactId>
|
||
<version>${revision}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>cn.hangtag</groupId>
|
||
<artifactId>hangtag-module-oms-api</artifactId>
|
||
<version>2.1.0-jdk8-snapshot</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.hangtag</groupId>
|
||
<artifactId>hangtag-module-system-biz</artifactId>
|
||
<version>2.1.0-jdk8-snapshot</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
|
||
|
||
|
||
<!-- Thymeleaf 模板引擎 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.thymeleaf.extras</groupId>
|
||
<artifactId>thymeleaf-extras-java8time</artifactId>
|
||
<version>3.0.4.RELEASE</version>
|
||
</dependency>
|
||
|
||
<!-- HTML转PDF工具(flying-saucer) -->
|
||
<dependency>
|
||
<groupId>org.xhtmlrenderer</groupId>
|
||
<artifactId>flying-saucer-core</artifactId>
|
||
<version>9.1.20</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.xhtmlrenderer</groupId>
|
||
<artifactId>flying-saucer-pdf-openpdf</artifactId>
|
||
<version>9.1.20</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.github.librepdf</groupId>
|
||
<artifactId>openpdf</artifactId>
|
||
<version>1.3.14</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.dromara.x-easypdf</groupId>
|
||
<artifactId>x-easypdf</artifactId>
|
||
<version>3.1.1</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project>
|