pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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-utils>0.0.5</thyy-utils>
  20. <thyy-socket>0.0.7</thyy-socket>
  21. <thyy-archive>0.0.8</thyy-archive>
  22. <thyy-haikang>0.0.4</thyy-haikang>
  23. <thyy-emr-query>1.5.0</thyy-emr-query>
  24. <thyy-thirdpart-api>0.0.1</thyy-thirdpart-api>
  25. <thyy-scheduled>0.0.1</thyy-scheduled>
  26. </properties>
  27. <modules>
  28. <module>thyy-archive</module>
  29. <module>thyy-utils</module>
  30. <module>thyy-socket</module>
  31. <module>thyy-haikang</module>
  32. <module>thyy-emr-query</module>
  33. <module>thyy-thirdpart-api</module>
  34. <module>thyy-scheduled</module>
  35. </modules>
  36. <dependencies>
  37. <dependency>
  38. <groupId>cn.hutool</groupId>
  39. <artifactId>hutool-all</artifactId>
  40. <version>5.8.34</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-validation</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.projectlombok</groupId>
  48. <artifactId>lombok</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-web</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.alibaba.fastjson2</groupId>
  56. <artifactId>fastjson2</artifactId>
  57. <version>2.0.52</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.github.xingfudeshi</groupId>
  61. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  62. <version>4.6.0</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-actuator</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.alibaba</groupId>
  70. <artifactId>druid-spring-boot-starter</artifactId>
  71. <version>1.1.20</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.microsoft.sqlserver</groupId>
  75. <artifactId>mssql-jdbc</artifactId>
  76. </dependency>
  77. </dependencies>
  78. <dependencyManagement>
  79. <dependencies>
  80. <dependency>
  81. <groupId>org.thyy.business</groupId>
  82. <artifactId>thyy-utils</artifactId>
  83. <version>${thyy-utils}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.microsoft.sqlserver</groupId>
  87. <artifactId>mssql-jdbc</artifactId>
  88. <version>8.2.2.jre8</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.baomidou</groupId>
  92. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  93. <version>3.5.9</version>
  94. </dependency>
  95. </dependencies>
  96. </dependencyManagement>
  97. </project>