pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>3.4.1</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>org.thyy.business</groupId>
  12. <artifactId>thyy-business</artifactId>
  13. <version>0.0.1</version>
  14. <name>thyy-business</name>
  15. <description>thyy-business</description>
  16. <packaging>pom</packaging>
  17. <properties>
  18. <java.version>21</java.version>
  19. <thyy.busuness>0.0.1</thyy.busuness>
  20. </properties>
  21. <modules>
  22. <module>thyy-archive</module>
  23. <module>thyy-utils</module>
  24. <module>thyy-socket</module>
  25. </modules>
  26. <dependencies>
  27. <dependency>
  28. <groupId>cn.hutool</groupId>
  29. <artifactId>hutool-all</artifactId>
  30. <version>5.8.34</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.projectlombok</groupId>
  34. <artifactId>lombok</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.alibaba.fastjson2</groupId>
  42. <artifactId>fastjson2</artifactId>
  43. <version>2.0.52</version>
  44. </dependency>
  45. </dependencies>
  46. <dependencyManagement>
  47. <dependencies>
  48. <dependency>
  49. <groupId>org.thyy.business</groupId>
  50. <artifactId>thyy-utils</artifactId>
  51. <version>0.0.1</version>
  52. </dependency>
  53. </dependencies>
  54. </dependencyManagement>
  55. </project>