pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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.thyy.business</groupId>
  7. <artifactId>thyy-business</artifactId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <artifactId>thyy-emr-query</artifactId>
  11. <version>${thyy-emr-query}</version>
  12. <name>thyy-emr-query</name>
  13. <description>thyy-emr-query</description>
  14. <properties>
  15. <java.version>21</java.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-websocket</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-test</artifactId>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.microsoft.sqlserver</groupId>
  29. <artifactId>mssql-jdbc</artifactId>
  30. <version>8.2.2.jre8</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.alibaba</groupId>
  34. <artifactId>fastjson</artifactId>
  35. <version>1.2.83</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.auth0</groupId>
  39. <artifactId>java-jwt</artifactId>
  40. <version>3.4.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>cn.hutool</groupId>
  44. <artifactId>hutool-all</artifactId>
  45. <version>5.8.24</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.thyy.business</groupId>
  49. <artifactId>thyy-utils</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.baomidou</groupId>
  53. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.baomidou</groupId>
  57. <artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
  58. <version>4.2.0</version>
  59. </dependency>
  60. <!-- 分页插件-->
  61. <dependency>
  62. <groupId>com.baomidou</groupId>
  63. <artifactId>mybatis-plus-jsqlparser</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>ognl</groupId>
  71. <artifactId>ognl</artifactId>
  72. <version>3.3.4</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-undertow</artifactId>
  77. <exclusions>
  78. <exclusion>
  79. <groupId>io.undertow</groupId>
  80. <artifactId>undertow-websockets-jsr</artifactId>
  81. </exclusion>
  82. </exclusions>
  83. </dependency>
  84. </dependencies>
  85. <dependencyManagement>
  86. <dependencies>
  87. <dependency>
  88. <groupId>com.baomidou</groupId>
  89. <artifactId>mybatis-plus-bom</artifactId>
  90. <version>3.5.10.1</version>
  91. <type>pom</type>
  92. <scope>import</scope>
  93. </dependency>
  94. </dependencies>
  95. </dependencyManagement>
  96. <build>
  97. <plugins>
  98. <plugin>
  99. <groupId>org.apache.maven.plugins</groupId>
  100. <artifactId>maven-compiler-plugin</artifactId>
  101. <configuration>
  102. <annotationProcessorPaths>
  103. <path>
  104. <groupId>org.projectlombok</groupId>
  105. <artifactId>lombok</artifactId>
  106. </path>
  107. </annotationProcessorPaths>
  108. </configuration>
  109. </plugin>
  110. <plugin>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-maven-plugin</artifactId>
  113. <configuration>
  114. <excludes>
  115. <exclude>
  116. <groupId>org.projectlombok</groupId>
  117. <artifactId>lombok</artifactId>
  118. </exclude>
  119. </excludes>
  120. </configuration>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. </project>