pom.xml 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  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. <groupId>com.qizhen</groupId>
  6. <artifactId>healsphere</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>qizhen</name>
  9. <description>qizhen</description>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>2.6.13</spring-boot.version>
  15. <mybatis-plus-boot-starter.version>3.2.0</mybatis-plus-boot-starter.version>
  16. <mybatis-spring-boot.version>2.1.1</mybatis-spring-boot.version>
  17. <druid.version>1.1.21</druid.version>
  18. <swagger.version>2.9.2</swagger.version>
  19. <poi.version>5.2.3</poi.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <artifactId>log4j-to-slf4j</artifactId>
  24. <groupId>org.apache.logging.log4j</groupId>
  25. <version>2.17.2</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. <exclusions>
  31. <exclusion>
  32. <artifactId>log4j-to-slf4j</artifactId>
  33. <groupId>org.apache.logging.log4j</groupId>
  34. </exclusion>
  35. </exclusions>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-test</artifactId>
  40. <scope>test</scope>
  41. <exclusions>
  42. <exclusion>
  43. <artifactId>apiguardian-api</artifactId>
  44. <groupId>org.apiguardian</groupId>
  45. </exclusion>
  46. </exclusions>
  47. </dependency>
  48. <dependency>
  49. <groupId>junit</groupId>
  50. <artifactId>junit</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.mybatis.spring.boot</groupId>
  55. <artifactId>mybatis-spring-boot-starter</artifactId>
  56. <version>2.1.1</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>mysql</groupId>
  60. <artifactId>mysql-connector-java</artifactId>
  61. <scope>runtime</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.postgresql</groupId>
  65. <artifactId>postgresql</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-data-neo4j</artifactId>
  70. <exclusions>
  71. <exclusion>
  72. <artifactId>apiguardian-api</artifactId>
  73. <groupId>org.apiguardian</groupId>
  74. </exclusion>
  75. <exclusion>
  76. <artifactId>neo4j-java-driver</artifactId>
  77. <groupId>org.neo4j.driver</groupId>
  78. </exclusion>
  79. </exclusions>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.neo4j.driver</groupId>
  83. <artifactId>neo4j-java-driver</artifactId>
  84. <version>1.6.3</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.poi</groupId>
  88. <artifactId>poi</artifactId>
  89. <version>${poi.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.poi</groupId>
  93. <artifactId>poi-ooxml</artifactId>
  94. <version>${poi.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>cn.hutool</groupId>
  98. <artifactId>hutool-all</artifactId>
  99. <version>5.4.0</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>us.codecraft</groupId>
  103. <artifactId>webmagic-core</artifactId>
  104. <version>0.9.0</version>
  105. <exclusions>
  106. <exclusion>
  107. <artifactId>fastjson</artifactId>
  108. <groupId>com.alibaba</groupId>
  109. </exclusion>
  110. </exclusions>
  111. </dependency>
  112. <dependency>
  113. <groupId>us.codecraft</groupId>
  114. <artifactId>webmagic-extension</artifactId>
  115. <version>0.9.0</version>
  116. </dependency>
  117. <dependency>
  118. <artifactId>fastjson</artifactId>
  119. <groupId>com.alibaba</groupId>
  120. <version>1.2.83</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.projectlombok</groupId>
  124. <artifactId>lombok</artifactId>
  125. <version>1.18.24</version>
  126. <scope>provided</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.alibaba</groupId>
  130. <artifactId>easyexcel</artifactId>
  131. <version>4.0.3</version>
  132. <exclusions>
  133. <exclusion>
  134. <artifactId>poi</artifactId>
  135. <groupId>org.apache.poi</groupId>
  136. </exclusion>
  137. <exclusion>
  138. <artifactId>poi-ooxml</artifactId>
  139. <groupId>org.apache.poi</groupId>
  140. </exclusion>
  141. <exclusion>
  142. <artifactId>commons-io</artifactId>
  143. <groupId>commons-io</groupId>
  144. </exclusion>
  145. </exclusions>
  146. </dependency>
  147. <!--swagger-->
  148. <dependency>
  149. <groupId>io.springfox</groupId>
  150. <artifactId>springfox-swagger2</artifactId>
  151. <version>${swagger.version}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>io.springfox</groupId>
  155. <artifactId>springfox-swagger-ui</artifactId>
  156. <version>${swagger.version}</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>jakarta.validation</groupId>
  160. <artifactId>jakarta.validation-api</artifactId>
  161. <version>2.0.1</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>com.baomidou</groupId>
  165. <artifactId>mybatis-plus-boot-starter</artifactId>
  166. <version>3.5.3.1</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.mybatis</groupId>
  170. <artifactId>mybatis</artifactId>
  171. <version>3.5.9</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.springframework.boot</groupId>
  175. <artifactId>spring-boot-devtools</artifactId>
  176. <scope>runtime</scope>
  177. <optional>true</optional>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.springframework.boot</groupId>
  181. <artifactId>spring-boot-starter-cache</artifactId>
  182. </dependency>
  183. <dependency>
  184. <groupId>com.github.ben-manes.caffeine</groupId>
  185. <artifactId>caffeine</artifactId>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.apache.xmlbeans</groupId>
  189. <artifactId>xmlbeans</artifactId>
  190. <version>5.1.1</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.apache.commons</groupId>
  194. <artifactId>commons-collections4</artifactId>
  195. <version>4.4</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.apache.poi</groupId>
  199. <artifactId>poi-scratchpad</artifactId>
  200. <version>${poi.version}</version>
  201. </dependency>
  202. <!-- 其他依赖 -->
  203. <dependency>
  204. <groupId>org.apache.commons</groupId>
  205. <artifactId>commons-lang3</artifactId>
  206. <version>3.12.0</version> <!-- 请使用最新版本 -->
  207. </dependency>
  208. </dependencies>
  209. <dependencyManagement>
  210. <dependencies>
  211. <dependency>
  212. <groupId>org.springframework.boot</groupId>
  213. <artifactId>spring-boot-dependencies</artifactId>
  214. <version>${spring-boot.version}</version>
  215. <type>pom</type>
  216. <scope>import</scope>
  217. </dependency>
  218. </dependencies>
  219. </dependencyManagement>
  220. <build>
  221. <plugins>
  222. <plugin>
  223. <groupId>org.apache.maven.plugins</groupId>
  224. <artifactId>maven-compiler-plugin</artifactId>
  225. <version>3.8.1</version>
  226. <configuration>
  227. <source>1.8</source>
  228. <target>1.8</target>
  229. <encoding>UTF-8</encoding>
  230. </configuration>
  231. </plugin>
  232. <plugin>
  233. <groupId>org.springframework.boot</groupId>
  234. <artifactId>spring-boot-maven-plugin</artifactId>
  235. <version>${spring-boot.version}</version>
  236. <configuration>
  237. <mainClass>com.qizhen.healsphere.Application</mainClass>
  238. <!-- <skip>true</skip>-->
  239. </configuration>
  240. <executions>
  241. <execution>
  242. <id>repackage</id>
  243. <goals>
  244. <goal>repackage</goal>
  245. </goals>
  246. </execution>
  247. </executions>
  248. </plugin>
  249. </plugins>
  250. </build>
  251. </project>