提交 | 用户 | 时间
|
e7c126
|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
H |
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 |
<groupId>com.iailab</groupId> |
|
7 |
<artifactId>iailab-framework</artifactId> |
|
8 |
<version>${revision}</version> |
|
9 |
</parent> |
|
10 |
<modelVersion>4.0.0</modelVersion> |
|
11 |
<artifactId>iailab-common-excel</artifactId> |
|
12 |
<packaging>jar</packaging> |
|
13 |
|
|
14 |
<name>${project.artifactId}</name> |
|
15 |
<description>Excel 拓展</description> |
4d4165
|
16 |
<url>http://172.16.8.100:8888/summary/iailab-plat.git</url> |
e7c126
|
17 |
|
H |
18 |
<dependencies> |
|
19 |
<dependency> |
|
20 |
<groupId>com.iailab</groupId> |
|
21 |
<artifactId>iailab-common</artifactId> |
|
22 |
</dependency> |
|
23 |
|
|
24 |
<!-- Spring 核心 --> |
|
25 |
<dependency> |
|
26 |
<groupId>org.springframework.boot</groupId> |
|
27 |
<artifactId>spring-boot-starter</artifactId> |
|
28 |
</dependency> |
|
29 |
|
|
30 |
<!-- RPC 远程调用相关 --> |
|
31 |
<dependency> |
|
32 |
<groupId>com.iailab</groupId> |
|
33 |
<artifactId>iailab-common-rpc</artifactId> |
|
34 |
<optional>true</optional> |
|
35 |
</dependency> |
|
36 |
|
|
37 |
<!-- 业务组件 --> |
|
38 |
<dependency> |
|
39 |
<groupId>com.iailab</groupId> |
|
40 |
<artifactId>iailab-module-system-api</artifactId> <!-- 需要使用它,进行 Dict 的查询 --> |
|
41 |
<version>${revision}</version> |
|
42 |
</dependency> |
|
43 |
|
|
44 |
<!-- Web 相关 --> |
|
45 |
<dependency> |
|
46 |
<groupId>org.springframework</groupId> |
|
47 |
<artifactId>spring-web</artifactId> |
|
48 |
<scope>provided</scope> <!-- 设置为 provided,只有 ExcelUtils 使用 --> |
|
49 |
</dependency> |
|
50 |
|
|
51 |
<dependency> |
|
52 |
<groupId>jakarta.servlet</groupId> |
|
53 |
<artifactId>jakarta.servlet-api</artifactId> |
|
54 |
<scope>provided</scope> <!-- 设置为 provided,只有 ExcelUtils 使用 --> |
|
55 |
</dependency> |
|
56 |
|
|
57 |
<!-- 工具类相关 --> |
|
58 |
<dependency> |
|
59 |
<groupId>com.alibaba</groupId> |
|
60 |
<artifactId>easyexcel</artifactId> |
|
61 |
</dependency> |
|
62 |
|
|
63 |
<dependency> |
|
64 |
<groupId>com.google.guava</groupId> |
|
65 |
<artifactId>guava</artifactId> |
|
66 |
</dependency> |
|
67 |
|
|
68 |
<dependency> |
|
69 |
<groupId>com.iailab</groupId> |
|
70 |
<artifactId>iailab-common-biz-ip</artifactId> |
|
71 |
<optional>true</optional> <!-- 设置为 optional,只有在 AreaConvert 的时候使用 --> |
|
72 |
</dependency> |
|
73 |
|
|
74 |
<!-- Test 测试相关 --> |
|
75 |
<dependency> |
|
76 |
<groupId>com.iailab</groupId> |
|
77 |
<artifactId>iailab-common-test</artifactId> |
|
78 |
<scope>test</scope> |
|
79 |
</dependency> |
|
80 |
</dependencies> |
|
81 |
|
|
82 |
</project> |