2024-06-12 00:14:14 +00:00
|
|
|
<?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>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.xdadan</groupId>
|
|
|
|
|
<artifactId>emis</artifactId>
|
2024-06-12 02:26:24 +00:00
|
|
|
<version>2.0.0</version>
|
2024-06-12 00:14:14 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
|
2024-06-12 10:13:43 +00:00
|
|
|
<artifactId>emis-oms-biz</artifactId>
|
2024-07-12 01:44:16 +00:00
|
|
|
<version>2.1.0</version>
|
2024-06-12 10:13:43 +00:00
|
|
|
<description>emis oms biz 模块</description>
|
2024-06-12 00:14:14 +00:00
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<!-- 通用工具-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.xdadan</groupId>
|
|
|
|
|
<artifactId>emis-oms-common</artifactId>
|
2024-07-12 02:09:55 +00:00
|
|
|
<version>2.1.0</version>
|
2024-06-12 00:14:14 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.xdadan</groupId>
|
|
|
|
|
<artifactId>emis-oms-system</artifactId>
|
2024-07-12 02:09:55 +00:00
|
|
|
<version>2.1.0</version>
|
2024-06-12 00:14:14 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.googlecode.aviator</groupId>
|
|
|
|
|
<artifactId>aviator</artifactId>
|
|
|
|
|
<version>5.2.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- pdf核心包 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
|
|
<artifactId>itextpdf</artifactId>
|
|
|
|
|
<version>5.5.6</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
|
|
<artifactId>itext-asian</artifactId>
|
|
|
|
|
<version>5.2.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- html转pdf -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.itextpdf.tool</groupId>
|
|
|
|
|
<artifactId>xmlworker</artifactId>
|
|
|
|
|
<version>5.5.6</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- pdf转图片 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
|
|
|
<artifactId>pdfbox</artifactId>
|
|
|
|
|
<version>2.0.9</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
|
|
|
<artifactId>fontbox</artifactId>
|
|
|
|
|
<version>2.0.9</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--缩略图-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.coobird</groupId>
|
|
|
|
|
<artifactId>thumbnailator</artifactId>
|
|
|
|
|
<version>0.4.11</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-07-12 10:09:23 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
|
|
<version>3.1.7</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-06-12 00:14:14 +00:00
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>com.fastreport</groupId>-->
|
|
|
|
|
<!-- <artifactId>fastreport</artifactId>-->
|
|
|
|
|
<!-- <version>1.0.0</version>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|