pom.xml 3.4 KB

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