pom.xml 4.2 KB

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