pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>jar</packaging>
  6. <parent>
  7. <groupId>cn.hutool</groupId>
  8. <artifactId>hutool-parent</artifactId>
  9. <version>5.5.4</version>
  10. </parent>
  11. <artifactId>hutool-poi</artifactId>
  12. <name>${project.artifactId}</name>
  13. <description>Hutool POI工具类(对MS Office操作)</description>
  14. <properties>
  15. <!-- versions -->
  16. <poi.version>4.1.2</poi.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>cn.hutool</groupId>
  21. <artifactId>hutool-core</artifactId>
  22. <version>${project.parent.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.hutool</groupId>
  26. <artifactId>hutool-log</artifactId>
  27. <version>${project.parent.version}</version>
  28. </dependency>
  29. <!-- POI -->
  30. <dependency>
  31. <groupId>org.apache.poi</groupId>
  32. <artifactId>poi-ooxml</artifactId>
  33. <version>${poi.version}</version>
  34. <scope>compile</scope>
  35. <optional>true</optional>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.ofdrw</groupId>
  39. <artifactId>ofdrw-full</artifactId>
  40. <version>1.7.2</version>
  41. <scope>compile</scope>
  42. <optional>true</optional>
  43. </dependency>
  44. </dependencies>
  45. </project>