pom.xml 4.1 KB

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