pom.xml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  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>com.baomidou</groupId>-->
  56. <!-- <artifactId>mybatis-plus-boot-starter</artifactId>-->
  57. <!-- <version>3.1.2</version>-->
  58. <!-- <exclusions>-->
  59. <!-- <exclusion>-->
  60. <!-- <artifactId>mybatis-spring</artifactId>-->
  61. <!-- <groupId>org.mybatis</groupId>-->
  62. <!-- </exclusion>-->
  63. <!-- <exclusion>-->
  64. <!-- <artifactId>mybatis</artifactId>-->
  65. <!-- <groupId>org.mybatis</groupId>-->
  66. <!-- </exclusion>-->
  67. <!-- </exclusions>-->
  68. <!-- </dependency>-->
  69. <dependency>
  70. <groupId>org.mybatis.spring.boot</groupId>
  71. <artifactId>mybatis-spring-boot-starter</artifactId>
  72. <version>2.1.1</version>
  73. </dependency>
  74. <!-- <dependency>-->
  75. <!-- <groupId>com.baomidou</groupId>-->
  76. <!-- <artifactId>dynamic-datasource-spring-boot-starter</artifactId>-->
  77. <!-- <version>3.0.0</version>-->
  78. <!-- </dependency>-->
  79. <dependency>
  80. <groupId>mysql</groupId>
  81. <artifactId>mysql-connector-java</artifactId>
  82. <scope>runtime</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter-data-neo4j</artifactId>
  87. <exclusions>
  88. <exclusion>
  89. <artifactId>apiguardian-api</artifactId>
  90. <groupId>org.apiguardian</groupId>
  91. </exclusion>
  92. <exclusion>
  93. <artifactId>neo4j-java-driver</artifactId>
  94. <groupId>org.neo4j.driver</groupId>
  95. </exclusion>
  96. </exclusions>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.neo4j.driver</groupId>
  100. <artifactId>neo4j-java-driver</artifactId>
  101. <version>1.6.3</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.apache.poi</groupId>
  105. <artifactId>poi</artifactId>
  106. <version>${poi.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.poi</groupId>
  110. <artifactId>poi-ooxml</artifactId>
  111. <version>${poi.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>cn.hutool</groupId>
  115. <artifactId>hutool-all</artifactId>
  116. <version>5.4.0</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>us.codecraft</groupId>
  120. <artifactId>webmagic-core</artifactId>
  121. <version>0.9.0</version>
  122. <exclusions>
  123. <exclusion>
  124. <artifactId>fastjson</artifactId>
  125. <groupId>com.alibaba</groupId>
  126. </exclusion>
  127. </exclusions>
  128. </dependency>
  129. <dependency>
  130. <groupId>us.codecraft</groupId>
  131. <artifactId>webmagic-extension</artifactId>
  132. <version>0.9.0</version>
  133. </dependency>
  134. <dependency>
  135. <artifactId>fastjson</artifactId>
  136. <groupId>com.alibaba</groupId>
  137. <version>1.2.83</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.projectlombok</groupId>
  141. <artifactId>lombok</artifactId>
  142. <version>1.18.24</version>
  143. <scope>provided</scope>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.alibaba</groupId>
  147. <artifactId>easyexcel</artifactId>
  148. <version>4.0.3</version>
  149. <exclusions>
  150. <exclusion>
  151. <artifactId>poi</artifactId>
  152. <groupId>org.apache.poi</groupId>
  153. </exclusion>
  154. <exclusion>
  155. <artifactId>poi-ooxml</artifactId>
  156. <groupId>org.apache.poi</groupId>
  157. </exclusion>
  158. <exclusion>
  159. <artifactId>commons-io</artifactId>
  160. <groupId>commons-io</groupId>
  161. </exclusion>
  162. </exclusions>
  163. </dependency>
  164. <!--swagger-->
  165. <dependency>
  166. <groupId>io.springfox</groupId>
  167. <artifactId>springfox-swagger2</artifactId>
  168. <version>${swagger.version}</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>io.springfox</groupId>
  172. <artifactId>springfox-swagger-ui</artifactId>
  173. <version>${swagger.version}</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>jakarta.validation</groupId>
  177. <artifactId>jakarta.validation-api</artifactId>
  178. <version>2.0.1</version>
  179. </dependency>
  180. </dependencies>
  181. <dependencyManagement>
  182. <dependencies>
  183. <dependency>
  184. <groupId>org.springframework.boot</groupId>
  185. <artifactId>spring-boot-dependencies</artifactId>
  186. <version>${spring-boot.version}</version>
  187. <type>pom</type>
  188. <scope>import</scope>
  189. </dependency>
  190. </dependencies>
  191. </dependencyManagement>
  192. <build>
  193. <plugins>
  194. <plugin>
  195. <groupId>org.apache.maven.plugins</groupId>
  196. <artifactId>maven-compiler-plugin</artifactId>
  197. <version>3.8.1</version>
  198. <configuration>
  199. <source>1.8</source>
  200. <target>1.8</target>
  201. <encoding>UTF-8</encoding>
  202. </configuration>
  203. </plugin>
  204. <plugin>
  205. <groupId>org.springframework.boot</groupId>
  206. <artifactId>spring-boot-maven-plugin</artifactId>
  207. <version>${spring-boot.version}</version>
  208. <configuration>
  209. <mainClass>com.qizhen.healsphere.Application</mainClass>
  210. <skip>true</skip>
  211. </configuration>
  212. <executions>
  213. <execution>
  214. <id>repackage</id>
  215. <goals>
  216. <goal>repackage</goal>
  217. </goals>
  218. </execution>
  219. </executions>
  220. </plugin>
  221. </plugins>
  222. </build>
  223. </project>