pom.xml 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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 http://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>2.2.7.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.zskk</groupId>
  12. <artifactId>pacsonline</artifactId>
  13. <version>1.0.0-SNAPSHOT</version>
  14. <name>pacsonline</name>
  15. <description>中世慷慨远程诊断平台</description>
  16. <properties>
  17. <java.version>11</java.version>
  18. <skipTests>true</skipTests>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-test</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <!--security-->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-security</artifactId>
  38. </dependency>
  39. <!-- <dependency>-->
  40. <!-- <groupId>ru.yandex.clickhouse</groupId>-->
  41. <!-- <artifactId>clickhouse-jdbc</artifactId>-->
  42. <!-- <version>0.3.1-patch</version>-->
  43. <!-- </dependency>-->
  44. <dependency>
  45. <groupId>com.baomidou</groupId>
  46. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  47. <version>3.2.1</version>
  48. </dependency>
  49. <!--druid连接池-->
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>druid-spring-boot-starter</artifactId>
  53. <version>1.2.6</version>
  54. </dependency>
  55. <!-- <dependency>-->
  56. <!-- <groupId>org.springframework.boot</groupId>-->
  57. <!-- <artifactId>spring-boot-starter-data-elasticsearch</artifactId>-->
  58. <!-- </dependency>-->
  59. <!--mybatis连接mysql-->
  60. <dependency>
  61. <groupId>mysql</groupId>
  62. <artifactId>mysql-connector-java</artifactId>
  63. <version>8.0.16</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.mybatis.spring.boot</groupId>
  67. <artifactId>mybatis-spring-boot-starter</artifactId>
  68. <version>2.2.0</version>
  69. </dependency>
  70. <!-- redis -->
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-data-redis</artifactId>
  74. <version>2.3.4.RELEASE</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.github.pagehelper</groupId>
  78. <artifactId>pagehelper</artifactId>
  79. <version>5.2.0</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.github.pagehelper</groupId>
  83. <artifactId>pagehelper-spring-boot-autoconfigure</artifactId>
  84. <version>1.2.5</version>
  85. </dependency>
  86. <!--okhttp3-->
  87. <dependency>
  88. <groupId>com.squareup.okhttp3</groupId>
  89. <artifactId>okhttp</artifactId>
  90. <version>4.7.2</version>
  91. </dependency>
  92. <!--poi-->
  93. <dependency>
  94. <groupId>org.apache.poi</groupId>
  95. <artifactId>poi</artifactId>
  96. <version>4.1.2</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.poi</groupId>
  100. <artifactId>poi-ooxml</artifactId>
  101. <version>4.1.2</version>
  102. </dependency>
  103. <!-- swagger -->
  104. <dependency>
  105. <groupId>io.springfox</groupId>
  106. <artifactId>springfox-swagger2</artifactId>
  107. <version>2.9.2</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>io.springfox</groupId>
  111. <artifactId>springfox-swagger-ui</artifactId>
  112. <version>2.9.2</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.github.xiaoymin</groupId>
  116. <artifactId>swagger-bootstrap-ui</artifactId>
  117. <version>1.9.1</version>
  118. </dependency>
  119. <!--fastjson-->
  120. <dependency>
  121. <groupId>com.alibaba</groupId>
  122. <artifactId>fastjson</artifactId>
  123. <version>1.2.75</version>
  124. </dependency>
  125. <!--JWT-->
  126. <dependency>
  127. <groupId>com.auth0</groupId>
  128. <artifactId>java-jwt</artifactId>
  129. <version>3.14.0</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>io.jsonwebtoken</groupId>
  133. <artifactId>jjwt</artifactId>
  134. <version>0.9.1</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>io.jsonwebtoken</groupId>
  138. <artifactId>jjwt-jackson</artifactId> <!-- or jjwt-gson if Gson is preferred -->
  139. <version>0.11.2</version>
  140. <scope>runtime</scope>
  141. </dependency>
  142. <!-- JAXB API - JDK 11+需要手动添加,因为Java 11移除了javax.xml.bind包 -->
  143. <dependency>
  144. <groupId>javax.xml.bind</groupId>
  145. <artifactId>jaxb-api</artifactId>
  146. <version>2.3.1</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.glassfish.jaxb</groupId>
  150. <artifactId>jaxb-runtime</artifactId>
  151. <version>2.3.1</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.projectlombok</groupId>
  155. <artifactId>lombok</artifactId>
  156. </dependency>
  157. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  158. <dependency>
  159. <groupId>org.apache.commons</groupId>
  160. <artifactId>commons-lang3</artifactId>
  161. <version>3.12.0</version>
  162. </dependency>
  163. <!-- mybatis-plus -->
  164. <dependency>
  165. <groupId>com.baomidou</groupId>
  166. <artifactId>mybatis-plus-boot-starter</artifactId>
  167. <version>3.1.2</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.aspectj</groupId>
  171. <artifactId>aspectjweaver</artifactId>
  172. <version>1.9.6</version>
  173. </dependency>
  174. <!-- hutool 工具类 -->
  175. <dependency>
  176. <groupId>cn.hutool</groupId>
  177. <artifactId>hutool-all</artifactId>
  178. <version>5.7.19</version>
  179. </dependency>
  180. <!-- hutool end -->
  181. </dependencies>
  182. <build>
  183. <plugins>
  184. <plugin>
  185. <groupId>org.apache.maven.plugins</groupId>
  186. <artifactId>maven-surefire-plugin</artifactId>
  187. <configuration>
  188. <skip>true</skip>
  189. </configuration>
  190. </plugin>
  191. <plugin>
  192. <groupId>org.springframework.boot</groupId>
  193. <artifactId>spring-boot-maven-plugin</artifactId>
  194. <configuration>
  195. <excludes>
  196. <exclude>
  197. <groupId>org.projectlombok</groupId>
  198. <artifactId>lombok</artifactId>
  199. </exclude>
  200. </excludes>
  201. </configuration>
  202. </plugin>
  203. </plugins>
  204. <resources>
  205. <resource>
  206. <directory>src/main/resources</directory>
  207. <filtering>true</filtering>
  208. </resource>
  209. <resource>
  210. <directory>src/main/java</directory>
  211. <includes>
  212. <include>**/*.xml</include>
  213. </includes>
  214. </resource>
  215. </resources>
  216. </build>
  217. </project>