pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0" encoding="UTF-8"?>
  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>cn.newfeifan.zx</groupId>
  7. <artifactId>feifan-framework</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>feifan-spring-boot-starter-excel</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>Excel 拓展</description>
  15. <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
  16. <dependencies>
  17. <dependency>
  18. <groupId>cn.newfeifan.zx</groupId>
  19. <artifactId>feifan-common</artifactId>
  20. </dependency>
  21. <!-- 业务组件 -->
  22. <dependency>
  23. <groupId>cn.newfeifan.zx</groupId>
  24. <artifactId>feifan-spring-boot-starter-biz-dict</artifactId>
  25. <optional>true</optional> <!-- 如果希望使用 @DictFormat 注解,需要引入该依赖 -->
  26. </dependency>
  27. <!-- Web 相关 -->
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-web</artifactId>
  31. <scope>provided</scope> <!-- 设置为 provided,只有 ExcelUtils 使用 -->
  32. </dependency>
  33. <dependency>
  34. <groupId>jakarta.servlet</groupId>
  35. <artifactId>jakarta.servlet-api</artifactId>
  36. <scope>provided</scope> <!-- 设置为 provided,只有 ExcelUtils 使用 -->
  37. </dependency>
  38. <!-- 工具类相关 -->
  39. <dependency>
  40. <groupId>com.alibaba</groupId>
  41. <artifactId>easyexcel</artifactId>
  42. </dependency>
  43. </dependencies>
  44. </project>