pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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.4</thyy-thirdpart-api>
  25. <thyy-scheduled>0.0.7</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-hospitalized</module>
  42. <module>thyy-medinsur</module>
  43. </modules>
  44. <dependencies>
  45. <dependency>
  46. <groupId>cn.hutool</groupId>
  47. <artifactId>hutool-all</artifactId>
  48. <version>5.8.34</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-validation</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.projectlombok</groupId>
  56. <artifactId>lombok</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-web</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.alibaba.fastjson2</groupId>
  64. <artifactId>fastjson2</artifactId>
  65. <version>2.0.52</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.github.xingfudeshi</groupId>
  69. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  70. <version>4.6.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-actuator</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.alibaba</groupId>
  78. <artifactId>druid-spring-boot-starter</artifactId>
  79. <version>1.1.20</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.microsoft.sqlserver</groupId>
  83. <artifactId>mssql-jdbc</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.baomidou</groupId>
  87. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>net.logstash.logback</groupId>
  91. <artifactId>logstash-logback-encoder</artifactId>
  92. <version>7.0.1</version>
  93. </dependency>
  94. </dependencies>
  95. <dependencyManagement>
  96. <dependencies>
  97. <dependency>
  98. <groupId>org.thyy.business</groupId>
  99. <artifactId>thyy-utils</artifactId>
  100. <version>${thyy-utils}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.microsoft.sqlserver</groupId>
  104. <artifactId>mssql-jdbc</artifactId>
  105. <version>8.2.2.jre8</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.baomidou</groupId>
  109. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  110. <version>3.5.9</version>
  111. </dependency>
  112. </dependencies>
  113. </dependencyManagement>
  114. </project>