hutool-json-5.8.27.pom 845 B

123456789101112131415161718192021222324252627282930
  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.8.27</version>
  11. </parent>
  12. <artifactId>hutool-json</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>Hutool JSON封装</description>
  15. <properties>
  16. <Automatic-Module-Name>cn.hutool.json</Automatic-Module-Name>
  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. </dependencies>
  25. </project>