pom.xml 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.migao</groupId>
  7. <artifactId>cq-yxfwzx-project-manager-java</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.2.0.RELEASE</version>
  13. <relativePath/>
  14. </parent>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <commons.lang3.version>3.8</commons.lang3.version>
  18. <commons.collections4.version>4.3</commons.collections4.version>
  19. <commons.beanutils.version>1.9.3</commons.beanutils.version>
  20. <fastjson.version>1.2.47</fastjson.version>
  21. <ansj_seg.version>5.1.1</ansj_seg.version>
  22. <easyexcel.version>2.1.6</easyexcel.version>
  23. <swagger.version>1.9.1.RELEASE</swagger.version>
  24. <jieba-analysis.version>1.0.2</jieba-analysis.version>
  25. <mybatis.plus.version>3.3.1</mybatis.plus.version>
  26. <commons-compress.version>1.19</commons-compress.version>
  27. <swagger-bootstrap-ui.version>1.9.6</swagger-bootstrap-ui.version>
  28. <pinyin4j.version>2.5.1</pinyin4j.version>
  29. <jsonwebtoken.version>0.9.1</jsonwebtoken.version>
  30. </properties>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-data-jpa</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.baomidou</groupId>
  38. <artifactId>mybatis-plus-boot-starter</artifactId>
  39. <version>${mybatis.plus.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-freemarker</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-web</artifactId>
  48. </dependency>
  49. <!--<dependency>
  50. <groupId>mysql</groupId>
  51. <artifactId>mysql-connector-java</artifactId>
  52. <scope>runtime</scope>
  53. </dependency>-->
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-configuration-processor</artifactId>
  57. <optional>true</optional>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.projectlombok</groupId>
  61. <artifactId>lombok</artifactId>
  62. <optional>true</optional>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-test</artifactId>
  67. <scope>test</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.spring4all</groupId>
  71. <artifactId>swagger-spring-boot-starter</artifactId>
  72. <version>${swagger.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.github.xiaoymin</groupId>
  76. <artifactId>swagger-bootstrap-ui</artifactId>
  77. <version>${swagger-bootstrap-ui.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.commons</groupId>
  81. <artifactId>commons-lang3</artifactId>
  82. <version>${commons.lang3.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.commons</groupId>
  86. <artifactId>commons-collections4</artifactId>
  87. <version>${commons.collections4.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>commons-beanutils</groupId>
  91. <artifactId>commons-beanutils</artifactId>
  92. <version>${commons.beanutils.version}</version>
  93. </dependency>
  94. <!--fast-json-->
  95. <dependency>
  96. <groupId>com.alibaba</groupId>
  97. <artifactId>fastjson</artifactId>
  98. <version>${fastjson.version}</version>
  99. </dependency>
  100. <!--分词组件-->
  101. <dependency>
  102. <groupId>org.ansj</groupId>
  103. <artifactId>ansj_seg</artifactId>
  104. <version>${ansj_seg.version}</version>
  105. </dependency>
  106. <!--结巴分词 新项目作为备用-->
  107. <dependency>
  108. <groupId>com.huaban</groupId>
  109. <artifactId>jieba-analysis</artifactId>
  110. <version>${jieba-analysis.version}</version>
  111. </dependency>
  112. <!--excel解析生成工具-->
  113. <dependency>
  114. <groupId>com.alibaba</groupId>
  115. <artifactId>easyexcel</artifactId>
  116. <version>${easyexcel.version}</version>
  117. </dependency>
  118. <!--解压、压缩 zip-->
  119. <dependency>
  120. <groupId>org.apache.commons</groupId>
  121. <artifactId>commons-compress</artifactId>
  122. <version>${commons-compress.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.apache.commons</groupId>
  126. <artifactId>commons-lang3</artifactId>
  127. <version>${commons.lang3.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.apache.commons</groupId>
  131. <artifactId>commons-collections4</artifactId>
  132. <version>${commons.collections4.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>commons-beanutils</groupId>
  136. <artifactId>commons-beanutils</artifactId>
  137. <version>${commons.beanutils.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.belerweb</groupId>
  141. <artifactId>pinyin4j</artifactId>
  142. <version>${pinyin4j.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.springframework.boot</groupId>
  146. <artifactId>spring-boot-starter-aop</artifactId>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.seleniumhq.selenium</groupId>
  150. <artifactId>selenium-server</artifactId>
  151. <version>3.9.1</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.github.xiaoymin</groupId>
  155. <artifactId>swagger-bootstrap-ui</artifactId>
  156. <version>1.9.6</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>cn.hutool</groupId>
  160. <artifactId>hutool-all</artifactId>
  161. <version>5.4.2</version>
  162. </dependency>
  163. <!-- 发送邮件 -->
  164. <dependency>
  165. <groupId>javax.mail</groupId>
  166. <artifactId>mail</artifactId>
  167. <version>1.4.7</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>mysql</groupId>
  171. <artifactId>mysql-connector-java</artifactId>
  172. <scope>runtime</scope>
  173. </dependency>
  174. <dependency>
  175. <groupId>io.jsonwebtoken</groupId>
  176. <artifactId>jjwt</artifactId>
  177. <version>${jsonwebtoken.version}</version>
  178. </dependency>
  179. </dependencies>
  180. <!--阿里云仓库-->
  181. <repositories>
  182. <repository>
  183. <id>nexus-aliyun</id>
  184. <name>Nexus aliyun</name>
  185. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  186. </repository>
  187. </repositories>
  188. <build>
  189. <plugins>
  190. <plugin>
  191. <artifactId>maven-compiler-plugin</artifactId>
  192. <version>3.3</version>
  193. <configuration>
  194. <source>${java.version}</source>
  195. <target>${java.version}</target>
  196. <encoding>utf-8</encoding>
  197. </configuration>
  198. </plugin>
  199. <plugin>
  200. <groupId>org.springframework.boot</groupId>
  201. <artifactId>spring-boot-maven-plugin</artifactId>
  202. </plugin>
  203. </plugins>
  204. </build>
  205. </project>