pom.xml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  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.0.8.RELEASE</version>
  9. <relativePath/>
  10. </parent>
  11. <groupId>com.pavis</groupId>
  12. <artifactId>ltw</artifactId>
  13. <version>v1</version>
  14. <packaging>war</packaging>
  15. <name>ltw</name>
  16. <description>Demo project for Spring Boot</description>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. <!-- icepdf.core.version -->
  20. <icepdf.core.version>6.2.2</icepdf.core.version>
  21. <!-- druid.spring.boot.version -->
  22. <druid.spring.boot.version>1.1.10</druid.spring.boot.version>
  23. <!-- commons.lang3.version -->
  24. <commons.lang3.version>3.7</commons.lang3.version>
  25. <!-- fastjson.version -->
  26. <fastjson.version>1.2.47</fastjson.version>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-validation</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>mysql</groupId>
  39. <artifactId>mysql-connector-java</artifactId>
  40. <scope>runtime</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.projectlombok</groupId>
  44. <artifactId>lombok</artifactId>
  45. <optional>true</optional>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-tomcat</artifactId>
  50. <!--<scope>provided</scope>-->
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-test</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>io.springfox</groupId>
  59. <artifactId>springfox-swagger2</artifactId>
  60. <version>2.9.2</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>io.springfox</groupId>
  64. <artifactId>springfox-swagger-ui</artifactId>
  65. <version>2.9.2</version>
  66. </dependency>
  67. <!-- icepdf-core PDF转JPG -->
  68. <!--<dependency>-->
  69. <!--<groupId>org.icepdf.os</groupId>-->
  70. <!--<artifactId>icepdf-core</artifactId>-->
  71. <!--<version>${icepdf.core.version}</version>-->
  72. <!--</dependency>-->
  73. <!-- 常用工具包 -->
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-lang3</artifactId>
  77. <version>${commons.lang3.version}</version>
  78. </dependency>
  79. <!-- 阿里巴巴fastjson -->
  80. <dependency>
  81. <groupId>com.alibaba</groupId>
  82. <artifactId>fastjson</artifactId>
  83. <version>${fastjson.version}</version>
  84. </dependency>
  85. <!-- springboot 发送邮件 jar包-->
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-mail</artifactId>
  89. </dependency>
  90. <!-- 邮件模板依赖包 -->
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.baomidou</groupId>
  97. <artifactId>mybatis-plus-boot-starter</artifactId>
  98. <version>3.0.6</version>
  99. </dependency>
  100. <!--<dependency>-->
  101. <!--<groupId>org.springframework.cloud</groupId>-->
  102. <!--<artifactId>spring-cloud-starter-openfeign</artifactId>-->
  103. <!--</dependency>-->
  104. <!-- MongoDB -->
  105. <!--<dependency>-->
  106. <!--<groupId>org.mongodb</groupId>-->
  107. <!--<artifactId>mongo-java-driver</artifactId>-->
  108. <!--<version>3.10.1</version>-->
  109. <!--</dependency>-->
  110. <dependency>
  111. <groupId>joda-time</groupId>
  112. <artifactId>joda-time</artifactId>
  113. <version>2.9.9</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.squareup.okhttp3</groupId>
  117. <artifactId>okhttp</artifactId>
  118. <version>3.11.0</version>
  119. </dependency>
  120. <!-- Neo4j -->
  121. <!-- 服务器开发需要的jar包 -->
  122. <dependency>
  123. <groupId>org.neo4j.driver</groupId>
  124. <artifactId>neo4j-java-driver</artifactId>
  125. <version>1.2.2</version>
  126. </dependency>
  127. <!-- Neo4j -->
  128. <dependency>
  129. <groupId>org.neo4j</groupId>
  130. <artifactId>neo4j</artifactId>
  131. <version>3.5.3</version>
  132. </dependency>
  133. <!-- https://mvnrepository.com/artifact/org.neo4j/neo4j-ogm-http-driver -->
  134. <dependency>
  135. <groupId>org.neo4j</groupId>
  136. <artifactId>neo4j-ogm-http-driver</artifactId>
  137. <version>2.0.3</version>
  138. </dependency>
  139. <!-- 汉语转换为拼音 -->
  140. <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j -->
  141. <dependency>
  142. <groupId>com.belerweb</groupId>
  143. <artifactId>pinyin4j</artifactId>
  144. <version>2.5.0</version>
  145. </dependency>
  146. <!-- https://mvnrepository.com/artifact/com.github.stuxuhai/jpinyin -->
  147. <dependency>
  148. <groupId>com.github.stuxuhai</groupId>
  149. <artifactId>jpinyin</artifactId>
  150. <version>1.1.8</version>
  151. </dependency>
  152. <!-- zip & rar 包 -->
  153. <!-- https://mvnrepository.com/artifact/com.github.junrar/junrar -->
  154. <dependency>
  155. <groupId>com.github.junrar</groupId>
  156. <artifactId>junrar</artifactId>
  157. <version>0.7</version>
  158. </dependency>
  159. <!-- https://mvnrepository.com/artifact/net.lingala.zip4j/zip4j -->
  160. <dependency>
  161. <groupId>net.lingala.zip4j</groupId>
  162. <artifactId>zip4j</artifactId>
  163. <version>1.3.2</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.alibaba</groupId>
  167. <artifactId>easyexcel</artifactId>
  168. <version>1.0.3</version>
  169. </dependency>
  170. </dependencies>
  171. <dependencyManagement>
  172. <dependencies>
  173. <!--<dependency>-->
  174. <!--<groupId>org.springframework.cloud</groupId>-->
  175. <!--<artifactId>spring-cloud-dependencies</artifactId>-->
  176. <!--<version>${spring-cloud.version}</version>-->
  177. <!--<type>pom</type>-->
  178. <!--<scope>import</scope>-->
  179. <!--</dependency>-->
  180. </dependencies>
  181. </dependencyManagement>
  182. <build>
  183. <plugins>
  184. <plugin>
  185. <groupId>org.springframework.boot</groupId>
  186. <artifactId>spring-boot-maven-plugin</artifactId>
  187. </plugin>
  188. </plugins>
  189. </build>
  190. </project>