xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
提交 | 用户 | 时间
722af2 1 <?xml version="1.0" encoding="UTF-8"?>
X 2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <parent>
6         <artifactId>dl-qms</artifactId>
7         <groupId>com.dl</groupId>
8         <version>0.8.3</version>
9     </parent>
10     <modelVersion>4.0.0</modelVersion>
11
12     <artifactId>dl-system</artifactId>
13
14     <description>
15         system系统模块
16     </description>
17
18     <dependencies>
19
20         <!-- 通用工具-->
21         <dependency>
22             <groupId>com.dl</groupId>
23             <artifactId>dl-common</artifactId>
24         </dependency>
25
26         <!-- Flowable功能模块 -->
27         <dependency>
28             <groupId>com.dl</groupId>
29             <artifactId>dl-flowable</artifactId>
30         </dependency>
31
32         <!-- OSS功能模块 -->
33         <dependency>
34             <groupId>com.dl</groupId>
35             <artifactId>dl-oss</artifactId>
36         </dependency>
37
38         <!-- SMS功能模块 -->
39         <dependency>
40             <groupId>com.dl</groupId>
41             <artifactId>dl-sms</artifactId>
42         </dependency>
43
44         <!-- https://mvnrepository.com/artifact/com.itextpdf/itext7-core -->
45 <!--        <dependency>-->
46 <!--            <groupId>com.itextpdf</groupId>-->
47 <!--            <artifactId>kernel</artifactId>-->
48 <!--            <version>7.2.5</version>-->
49 <!--            <type>pom</type>-->
50 <!--        </dependency>-->
51 <!--        <dependency>-->
52 <!--            <groupId>com.itextpdf</groupId>-->
53 <!--            <artifactId>html2pdf</artifactId>-->
54 <!--            <version>3.0.3</version> &lt;!&ndash; 或者最新的版本 &ndash;&gt;-->
55 <!--        </dependency>-->
56
57         <dependency>
58             <groupId>com.itextpdf</groupId>
59             <artifactId>itext7-core</artifactId>
60             <version>7.2.6</version>
61             <type>pom</type>
62         </dependency>
63
64         <!-- https://mvnrepository.com/artifact/com.itextpdf/html2pdf -->
65         <!--这个依赖是iText PDF的一个扩展,专门用于将HTML内容转换为PDF-->
66         <dependency>
67             <groupId>com.itextpdf</groupId>
68             <artifactId>html2pdf</artifactId>
69             <version>4.0.5</version>
70         </dependency>
71     </dependencies>
72 </project>