pom.xml 619 B

12345678910111213141516171819
  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. <parent>
  8. <groupId>cn.hutool</groupId>
  9. <artifactId>hutool-parent</artifactId>
  10. <version>5.4.7</version>
  11. </parent>
  12. <artifactId>hutool-core</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>Hutool核心,包括集合、字符串、Bean等工具</description>
  15. </project>