pom.xml 8.6 KB

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