pom.xml 823 B

123456789101112131415161718192021222324252627
  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/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <packaging>jar</packaging>
  7. <dependencies>
  8. <dependency>
  9. <groupId>org.apache.poi</groupId>
  10. <artifactId>poi</artifactId>
  11. <version>4.1.2</version>
  12. <scope>compile</scope>
  13. </dependency>
  14. </dependencies>
  15. <parent>
  16. <groupId>cn.hutool</groupId>
  17. <artifactId>hutool-parent</artifactId>
  18. <version>5.5.3-SNAPSHOT</version>
  19. </parent>
  20. <artifactId>hutool-core</artifactId>
  21. <name>${project.artifactId}</name>
  22. <description>Hutool核心,包括集合、字符串、Bean等工具</description>
  23. </project>