pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright (c) 2025 GaoKunW
  4. ~
  5. -->
  6. <project xmlns="http://maven.apache.org/POM/4.0.0"
  7. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  8. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  9. <modelVersion>4.0.0</modelVersion>
  10. <parent>
  11. <groupId>org.eco.vip</groupId>
  12. <artifactId>eco-common</artifactId>
  13. <version>${revision}</version>
  14. </parent>
  15. <artifactId>com-excel</artifactId>
  16. <name>${project.artifactId}</name>
  17. <packaging>jar</packaging>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.eco.vip</groupId>
  21. <artifactId>com-core</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>cn.idev.excel</groupId>
  25. <artifactId>fastexcel</artifactId>
  26. <exclusions>
  27. <exclusion>
  28. <groupId>org.apache.poi</groupId>
  29. <artifactId>poi-ooxml</artifactId>
  30. </exclusion>
  31. </exclusions>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.poi</groupId>
  35. <artifactId>poi-ooxml</artifactId>
  36. <exclusions>
  37. <exclusion>
  38. <groupId>org.apache.commons</groupId>
  39. <artifactId>commons-lang3</artifactId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. </dependencies>
  44. </project>