pom.xml 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  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. <dependency>
  189. <groupId>org.apache.poi</groupId>
  190. <artifactId>poi-ooxml</artifactId>
  191. <version>5.2.3</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.apache.poi</groupId>
  195. <artifactId>poi-ooxml-schemas</artifactId>
  196. <version>4.1.2</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.apache.xmlbeans</groupId>
  200. <artifactId>xmlbeans</artifactId>
  201. <version>5.1.1</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.apache.commons</groupId>
  205. <artifactId>commons-collections4</artifactId>
  206. <version>4.4</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>