pom.xml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <packaging>jar</packaging>
  7. <parent>
  8. <groupId>cn.hutool</groupId>
  9. <artifactId>hutool-parent</artifactId>
  10. <version>5.4.7</version>
  11. </parent>
  12. <artifactId>hutool-extra</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>Hutool 扩展工具类(提供其它类库的封装)</description>
  15. <properties>
  16. <!-- versions -->
  17. <velocity.version>2.2</velocity.version>
  18. <beetl.version>3.2.2.RELEASE</beetl.version>
  19. <rythm.version>1.3.0</rythm.version>
  20. <freemarker.version>2.3.30</freemarker.version>
  21. <enjoy.version>4.9.02</enjoy.version>
  22. <thymeleaf.version>3.0.11.RELEASE</thymeleaf.version>
  23. <mail.version>1.6.2</mail.version>
  24. <jsch.version>0.1.55</jsch.version>
  25. <zxing.version>3.4.1</zxing.version>
  26. <net.version>3.7.2</net.version>
  27. <emoji-java.version>5.1.1</emoji-java.version>
  28. <servlet-api.version>4.0.1</servlet-api.version>
  29. <spring-boot.version>2.3.4.RELEASE</spring-boot.version>
  30. <cglib.version>3.3.0</cglib.version>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>cn.hutool</groupId>
  35. <artifactId>hutool-core</artifactId>
  36. <version>${project.parent.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>cn.hutool</groupId>
  40. <artifactId>hutool-setting</artifactId>
  41. <version>${project.parent.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>javax.servlet</groupId>
  45. <artifactId>javax.servlet-api</artifactId>
  46. <version>${servlet-api.version}</version>
  47. <scope>provided</scope>
  48. <optional>true</optional>
  49. </dependency>
  50. <!-- 模板引擎 -->
  51. <dependency>
  52. <groupId>org.apache.velocity</groupId>
  53. <artifactId>velocity-engine-core</artifactId>
  54. <version>${velocity.version}</version>
  55. <scope>compile</scope>
  56. <optional>true</optional>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.ibeetl</groupId>
  60. <artifactId>beetl</artifactId>
  61. <version>${beetl.version}</version>
  62. <scope>compile</scope>
  63. <optional>true</optional>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.rythmengine</groupId>
  67. <artifactId>rythm-engine</artifactId>
  68. <version>${rythm.version}</version>
  69. <scope>compile</scope>
  70. <optional>true</optional>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.freemarker</groupId>
  74. <artifactId>freemarker</artifactId>
  75. <version>${freemarker.version}</version>
  76. <scope>compile</scope>
  77. <optional>true</optional>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.jfinal</groupId>
  81. <artifactId>enjoy</artifactId>
  82. <version>${enjoy.version}</version>
  83. <scope>compile</scope>
  84. <optional>true</optional>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.thymeleaf</groupId>
  88. <artifactId>thymeleaf</artifactId>
  89. <version>${thymeleaf.version}</version>
  90. <scope>compile</scope>
  91. <optional>true</optional>
  92. </dependency>
  93. <!-- 邮件 -->
  94. <dependency>
  95. <groupId>com.sun.mail</groupId>
  96. <artifactId>javax.mail</artifactId>
  97. <version>${mail.version}</version>
  98. <scope>compile</scope>
  99. <optional>true</optional>
  100. </dependency>
  101. <!-- SSH安全连接所使用的类库 -->
  102. <dependency>
  103. <groupId>com.jcraft</groupId>
  104. <artifactId>jsch</artifactId>
  105. <version>${jsch.version}</version>
  106. <scope>compile</scope>
  107. <optional>true</optional>
  108. </dependency>
  109. <!-- 二维码 -->
  110. <dependency>
  111. <groupId>com.google.zxing</groupId>
  112. <artifactId>core</artifactId>
  113. <version>${zxing.version}</version>
  114. <scope>compile</scope>
  115. <optional>true</optional>
  116. </dependency>
  117. <!-- FTP工具 -->
  118. <dependency>
  119. <groupId>commons-net</groupId>
  120. <artifactId>commons-net</artifactId>
  121. <version>${net.version}</version>
  122. <scope>compile</scope>
  123. <optional>true</optional>
  124. </dependency>
  125. <!-- Emoji工具依赖 -->
  126. <dependency>
  127. <groupId>com.vdurmont</groupId>
  128. <artifactId>emoji-java</artifactId>
  129. <version>${emoji-java.version}</version>
  130. <scope>compile</scope>
  131. <optional>true</optional>
  132. </dependency>
  133. <!-- 分词实现 -->
  134. <dependency>
  135. <groupId>org.ansj</groupId>
  136. <artifactId>ansj_seg</artifactId>
  137. <version>5.1.6</version>
  138. <optional>true</optional>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.huaban</groupId>
  142. <artifactId>jieba-analysis</artifactId>
  143. <version>1.0.2</version>
  144. <optional>true</optional>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.lionsoul</groupId>
  148. <artifactId>jcseg-core</artifactId>
  149. <version>2.6.2</version>
  150. <optional>true</optional>
  151. </dependency>
  152. <dependency>
  153. <groupId>com.chenlb.mmseg4j</groupId>
  154. <artifactId>mmseg4j-core</artifactId>
  155. <version>1.10.0</version>
  156. <optional>true</optional>
  157. </dependency>
  158. <dependency>
  159. <groupId>com.janeluo</groupId>
  160. <artifactId>ikanalyzer</artifactId>
  161. <version>2012_u6</version>
  162. <optional>true</optional>
  163. <exclusions>
  164. <exclusion>
  165. <groupId>org.apache.lucene</groupId>
  166. <artifactId>lucene-analyzers-common</artifactId>
  167. </exclusion>
  168. <exclusion>
  169. <groupId>org.apache.lucene</groupId>
  170. <artifactId>lucene-queryparser</artifactId>
  171. </exclusion>
  172. <exclusion>
  173. <groupId>org.apache.lucene</groupId>
  174. <artifactId>lucene-core</artifactId>
  175. </exclusion>
  176. </exclusions>
  177. </dependency>
  178. <dependency>
  179. <groupId>com.hankcs</groupId>
  180. <artifactId>hanlp</artifactId>
  181. <version>portable-1.7.8</version>
  182. <optional>true</optional>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.apache.lucene</groupId>
  186. <artifactId>lucene-analyzers-smartcn</artifactId>
  187. <version>8.6.3</version>
  188. <optional>true</optional>
  189. </dependency>
  190. <dependency>
  191. <groupId>org.apdplat</groupId>
  192. <artifactId>word</artifactId>
  193. <version>1.3.1</version>
  194. <optional>true</optional>
  195. </dependency>
  196. <dependency>
  197. <groupId>com.mayabot.mynlp</groupId>
  198. <artifactId>mynlp-segment</artifactId>
  199. <version>3.0.2</version>
  200. <optional>true</optional>
  201. </dependency>
  202. <!-- Spring Boot -->
  203. <dependency>
  204. <groupId>org.springframework.boot</groupId>
  205. <artifactId>spring-boot-starter</artifactId>
  206. <version>${spring-boot.version}</version>
  207. <optional>true</optional>
  208. </dependency>
  209. <dependency>
  210. <groupId>io.github.biezhi</groupId>
  211. <artifactId>TinyPinyin</artifactId>
  212. <version>2.0.3.RELEASE</version>
  213. <optional>true</optional>
  214. </dependency>
  215. <dependency>
  216. <groupId>com.belerweb</groupId>
  217. <artifactId>pinyin4j</artifactId>
  218. <version>2.5.1</version>
  219. <optional>true</optional>
  220. </dependency>
  221. <dependency>
  222. <groupId>com.github.stuxuhai</groupId>
  223. <artifactId>jpinyin</artifactId>
  224. <version>1.1.8</version>
  225. <optional>true</optional>
  226. </dependency>
  227. <dependency>
  228. <groupId>com.rnkrsoft.bopomofo4j</groupId>
  229. <artifactId>bopomofo4j</artifactId>
  230. <version>1.0.0</version>
  231. <optional>true</optional>
  232. </dependency>
  233. <dependency>
  234. <groupId>cglib</groupId>
  235. <artifactId>cglib</artifactId>
  236. <version>${cglib.version}</version>
  237. <scope>compile</scope>
  238. <optional>true</optional>
  239. </dependency>
  240. <dependency>
  241. <groupId>org.springframework.boot</groupId>
  242. <artifactId>spring-boot-starter-test</artifactId>
  243. <version>${spring-boot.version}</version>
  244. <scope>test</scope>
  245. </dependency>
  246. <dependency>
  247. <groupId>ch.qos.logback</groupId>
  248. <artifactId>logback-classic</artifactId>
  249. <version>1.2.3</version>
  250. <scope>test</scope>
  251. </dependency>
  252. </dependencies>
  253. </project>