pom.xml 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. <thyy-thirdpart-api>0.0.1</thyy-thirdpart-api>
  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-beinhospital</module>
  33. <module>thyy-emr-query</module>
  34. <module>thyy-thirdpart-api</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>io.jdbd.mysql</groupId>
  70. <artifactId>jdbd-mysql</artifactId>
  71. <version>0.11.9</version>
  72. </dependency>
  73. </dependencies>
  74. <dependencyManagement>
  75. <dependencies>
  76. <dependency>
  77. <groupId>org.thyy.business</groupId>
  78. <artifactId>thyy-utils</artifactId>
  79. <version>${thyy-utils}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.microsoft.sqlserver</groupId>
  83. <artifactId>mssql-jdbc</artifactId>
  84. <version>8.2.2.jre8</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.baomidou</groupId>
  88. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  89. <version>3.5.9</version>
  90. </dependency>
  91. </dependencies>
  92. </dependencyManagement>
  93. </project>