2021-05-02 00:41:21 +08: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">
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
<artifactId>yudao-framework</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-05-02 15:41:38 +08:00
|
|
|
|
<artifactId>yudao-spring-boot-starter-excel</artifactId>
|
2021-05-02 00:41:21 +08:00
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
2022-02-10 11:16:17 +08:00
|
|
|
|
<name>${project.artifactId}</name>
|
2021-05-02 15:41:38 +08:00
|
|
|
|
<description>Excel 拓展</description>
|
2021-05-02 00:41:21 +08:00
|
|
|
|
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2021-05-02 16:30:19 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
<artifactId>yudao-common</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-02-28 21:42:32 +08:00
|
|
|
|
<!-- Spring 核心 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-05-02 16:30:19 +08:00
|
|
|
|
<!-- 业务组件 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
2024-02-28 21:42:32 +08:00
|
|
|
|
<artifactId>yudao-module-system-api</artifactId> <!-- 需要使用它,进行 Dict 的查询 -->
|
|
|
|
|
<version>${revision}</version>
|
2021-05-02 16:30:19 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-05-02 00:41:21 +08:00
|
|
|
|
<!-- Web 相关 -->
|
2021-05-02 16:30:19 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
|
<scope>provided</scope> <!-- 设置为 provided,只有 ExcelUtils 使用 -->
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-05-02 00:41:21 +08:00
|
|
|
|
<dependency>
|
2021-05-02 15:41:38 +08:00
|
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
|
|
|
|
<scope>provided</scope> <!-- 设置为 provided,只有 ExcelUtils 使用 -->
|
2021-05-02 00:41:21 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 工具类相关 -->
|
|
|
|
|
<dependency>
|
2021-05-02 15:41:38 +08:00
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>easyexcel</artifactId>
|
2021-05-02 00:41:21 +08:00
|
|
|
|
</dependency>
|
2024-02-28 21:42:32 +08:00
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-02-22 11:07:34 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
<artifactId>yudao-spring-boot-starter-biz-ip</artifactId>
|
2024-02-23 18:50:22 +08:00
|
|
|
|
<optional>true</optional> <!-- 设置为 optional,只有在 AreaConvert 的时候使用 -->
|
2024-02-22 11:07:34 +08:00
|
|
|
|
</dependency>
|
2021-05-02 00:41:21 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|