pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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.2-SNAPSHOT</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. <xerces.version>2.12.0</xerces.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>cn.hutool</groupId>
  22. <artifactId>hutool-core</artifactId>
  23. <version>${project.parent.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>cn.hutool</groupId>
  27. <artifactId>hutool-log</artifactId>
  28. <version>${project.parent.version}</version>
  29. </dependency>
  30. <!-- POI -->
  31. <dependency>
  32. <groupId>org.apache.poi</groupId>
  33. <artifactId>poi-ooxml</artifactId>
  34. <version>${poi.version}</version>
  35. <scope>compile</scope>
  36. <optional>true</optional>
  37. </dependency>
  38. <dependency>
  39. <groupId>xerces</groupId>
  40. <artifactId>xercesImpl</artifactId>
  41. <version>${xerces.version}</version>
  42. <scope>compile</scope>
  43. <optional>true</optional>
  44. </dependency>
  45. </dependencies>
  46. </project>