pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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. <properties>
  15. <java.version>11</java.version>
  16. <skipTests>true</skipTests>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-test</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. <!--security-->
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-security</artifactId>
  36. </dependency>
  37. <!-- <dependency>-->
  38. <!-- <groupId>ru.yandex.clickhouse</groupId>-->
  39. <!-- <artifactId>clickhouse-jdbc</artifactId>-->
  40. <!-- <version>0.3.1-patch</version>-->
  41. <!-- </dependency>-->
  42. <dependency>
  43. <groupId>com.baomidou</groupId>
  44. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  45. <version>3.2.1</version>
  46. </dependency>
  47. <!--druid连接池-->
  48. <dependency>
  49. <groupId>com.alibaba</groupId>
  50. <artifactId>druid-spring-boot-starter</artifactId>
  51. <version>1.2.6</version>
  52. </dependency>
  53. <!-- <dependency>-->
  54. <!-- <groupId>org.springframework.boot</groupId>-->
  55. <!-- <artifactId>spring-boot-starter-data-elasticsearch</artifactId>-->
  56. <!-- </dependency>-->
  57. <!--mybatis连接mysql-->
  58. <dependency>
  59. <groupId>mysql</groupId>
  60. <artifactId>mysql-connector-java</artifactId>
  61. <version>8.0.16</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.mybatis.spring.boot</groupId>
  65. <artifactId>mybatis-spring-boot-starter</artifactId>
  66. <version>2.2.0</version>
  67. </dependency>
  68. <!-- redis -->
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-data-redis</artifactId>
  72. <version>2.3.4.RELEASE</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.github.pagehelper</groupId>
  76. <artifactId>pagehelper</artifactId>
  77. <version>5.2.0</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.github.pagehelper</groupId>
  81. <artifactId>pagehelper-spring-boot-autoconfigure</artifactId>
  82. <version>1.2.5</version>
  83. </dependency>
  84. <!--okhttp3-->
  85. <dependency>
  86. <groupId>com.squareup.okhttp3</groupId>
  87. <artifactId>okhttp</artifactId>
  88. <version>4.7.2</version>
  89. </dependency>
  90. <!--poi-->
  91. <dependency>
  92. <groupId>org.apache.poi</groupId>
  93. <artifactId>poi</artifactId>
  94. <version>4.1.2</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.poi</groupId>
  98. <artifactId>poi-ooxml</artifactId>
  99. <version>4.1.2</version>
  100. </dependency>
  101. <!-- swagger -->
  102. <dependency>
  103. <groupId>io.springfox</groupId>
  104. <artifactId>springfox-swagger2</artifactId>
  105. <version>2.9.2</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>io.springfox</groupId>
  109. <artifactId>springfox-swagger-ui</artifactId>
  110. <version>2.9.2</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.github.xiaoymin</groupId>
  114. <artifactId>swagger-bootstrap-ui</artifactId>
  115. <version>1.9.1</version>
  116. </dependency>
  117. <!--fastjson-->
  118. <dependency>
  119. <groupId>com.alibaba</groupId>
  120. <artifactId>fastjson</artifactId>
  121. <version>1.2.75</version>
  122. </dependency>
  123. <!--JWT-->
  124. <dependency>
  125. <groupId>com.auth0</groupId>
  126. <artifactId>java-jwt</artifactId>
  127. <version>3.14.0</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>io.jsonwebtoken</groupId>
  131. <artifactId>jjwt</artifactId>
  132. <version>0.9.1</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>io.jsonwebtoken</groupId>
  136. <artifactId>jjwt-jackson</artifactId> <!-- or jjwt-gson if Gson is preferred -->
  137. <version>0.11.2</version>
  138. <scope>runtime</scope>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.projectlombok</groupId>
  142. <artifactId>lombok</artifactId>
  143. </dependency>
  144. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  145. <dependency>
  146. <groupId>org.apache.commons</groupId>
  147. <artifactId>commons-lang3</artifactId>
  148. <version>3.12.0</version>
  149. </dependency>
  150. <!-- mybatis-plus -->
  151. <dependency>
  152. <groupId>com.baomidou</groupId>
  153. <artifactId>mybatis-plus-boot-starter</artifactId>
  154. <version>3.1.2</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.aspectj</groupId>
  158. <artifactId>aspectjweaver</artifactId>
  159. <version>1.9.6</version>
  160. </dependency>
  161. <!-- redis -->
  162. <dependency>
  163. <groupId>org.springframework.boot</groupId>
  164. <artifactId>spring-boot-starter-data-redis</artifactId>
  165. <version>2.3.4.RELEASE</version>redis
  166. </dependency>
  167. <!-- hutool 工具类 -->
  168. <dependency>
  169. <groupId>cn.hutool</groupId>
  170. <artifactId>hutool-all</artifactId>
  171. <version>5.7.19</version>
  172. </dependency>
  173. <!-- hutool end -->
  174. </dependencies>
  175. <build>
  176. <plugins>
  177. <plugin>
  178. <groupId>org.springframework.boot</groupId>
  179. <artifactId>spring-boot-maven-plugin</artifactId>
  180. </plugin>
  181. </plugins>
  182. </build>
  183. </project>