pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  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.3.2-SNAPSHOT</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.1.2.RELEASE</beetl.version>
  19. <rythm.version>1.3.0</rythm.version>
  20. <freemarker.version>2.3.30</freemarker.version>
  21. <enjoy.version>4.8</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.0</zxing.version>
  26. <net.version>3.6</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.2.6.RELEASE</spring-boot.version>
  30. </properties>
  31. <dependencies>
  32. <dependency>
  33. <groupId>cn.hutool</groupId>
  34. <artifactId>hutool-core</artifactId>
  35. <version>${project.parent.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>cn.hutool</groupId>
  39. <artifactId>hutool-setting</artifactId>
  40. <version>${project.parent.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>javax.servlet</groupId>
  44. <artifactId>javax.servlet-api</artifactId>
  45. <version>${servlet-api.version}</version>
  46. <scope>provided</scope>
  47. <optional>true</optional>
  48. </dependency>
  49. <!-- 模板引擎 -->
  50. <dependency>
  51. <groupId>org.apache.velocity</groupId>
  52. <artifactId>velocity-engine-core</artifactId>
  53. <version>${velocity.version}</version>
  54. <scope>compile</scope>
  55. <optional>true</optional>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.ibeetl</groupId>
  59. <artifactId>beetl</artifactId>
  60. <version>${beetl.version}</version>
  61. <scope>compile</scope>
  62. <optional>true</optional>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.rythmengine</groupId>
  66. <artifactId>rythm-engine</artifactId>
  67. <version>${rythm.version}</version>
  68. <scope>compile</scope>
  69. <optional>true</optional>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.freemarker</groupId>
  73. <artifactId>freemarker</artifactId>
  74. <version>${freemarker.version}</version>
  75. <scope>compile</scope>
  76. <optional>true</optional>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.jfinal</groupId>
  80. <artifactId>enjoy</artifactId>
  81. <version>${enjoy.version}</version>
  82. <scope>compile</scope>
  83. <optional>true</optional>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.thymeleaf</groupId>
  87. <artifactId>thymeleaf</artifactId>
  88. <version>${thymeleaf.version}</version>
  89. <scope>compile</scope>
  90. <optional>true</optional>
  91. </dependency>
  92. <!-- 邮件 -->
  93. <dependency>
  94. <groupId>com.sun.mail</groupId>
  95. <artifactId>javax.mail</artifactId>
  96. <version>${mail.version}</version>
  97. <scope>compile</scope>
  98. <optional>true</optional>
  99. </dependency>
  100. <!-- SSH安全连接所使用的类库 -->
  101. <dependency>
  102. <groupId>com.jcraft</groupId>
  103. <artifactId>jsch</artifactId>
  104. <version>${jsch.version}</version>
  105. <scope>compile</scope>
  106. <optional>true</optional>
  107. </dependency>
  108. <!-- 二维码 -->
  109. <dependency>
  110. <groupId>com.google.zxing</groupId>
  111. <artifactId>core</artifactId>
  112. <version>${zxing.version}</version>
  113. <scope>compile</scope>
  114. <optional>true</optional>
  115. </dependency>
  116. <!-- FTP工具 -->
  117. <dependency>
  118. <groupId>commons-net</groupId>
  119. <artifactId>commons-net</artifactId>
  120. <version>${net.version}</version>
  121. <scope>compile</scope>
  122. <optional>true</optional>
  123. </dependency>
  124. <!-- Emoji工具依赖 -->
  125. <dependency>
  126. <groupId>com.vdurmont</groupId>
  127. <artifactId>emoji-java</artifactId>
  128. <version>${emoji-java.version}</version>
  129. <scope>compile</scope>
  130. <optional>true</optional>
  131. </dependency>
  132. <!-- 分词实现 -->
  133. <dependency>
  134. <groupId>org.ansj</groupId>
  135. <artifactId>ansj_seg</artifactId>
  136. <version>5.1.6</version>
  137. <optional>true</optional>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.huaban</groupId>
  141. <artifactId>jieba-analysis</artifactId>
  142. <version>1.0.2</version>
  143. <optional>true</optional>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.lionsoul</groupId>
  147. <artifactId>jcseg-core</artifactId>
  148. <version>2.6.2</version>
  149. <optional>true</optional>
  150. </dependency>
  151. <dependency>
  152. <groupId>com.chenlb.mmseg4j</groupId>
  153. <artifactId>mmseg4j-core</artifactId>
  154. <version>1.10.0</version>
  155. <optional>true</optional>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.janeluo</groupId>
  159. <artifactId>ikanalyzer</artifactId>
  160. <version>2012_u6</version>
  161. <optional>true</optional>
  162. <exclusions>
  163. <exclusion>
  164. <groupId>org.apache.lucene</groupId>
  165. <artifactId>lucene-analyzers-common</artifactId>
  166. </exclusion>
  167. <exclusion>
  168. <groupId>org.apache.lucene</groupId>
  169. <artifactId>lucene-queryparser</artifactId>
  170. </exclusion>
  171. <exclusion>
  172. <groupId>org.apache.lucene</groupId>
  173. <artifactId>lucene-core</artifactId>
  174. </exclusion>
  175. </exclusions>
  176. </dependency>
  177. <dependency>
  178. <groupId>com.hankcs</groupId>
  179. <artifactId>hanlp</artifactId>
  180. <version>portable-1.7.7</version>
  181. <optional>true</optional>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.apache.lucene</groupId>
  185. <artifactId>lucene-analyzers-smartcn</artifactId>
  186. <version>8.4.1</version>
  187. <optional>true</optional>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.apdplat</groupId>
  191. <artifactId>word</artifactId>
  192. <version>1.3.1</version>
  193. <optional>true</optional>
  194. </dependency>
  195. <dependency>
  196. <groupId>com.mayabot.mynlp</groupId>
  197. <artifactId>mynlp-segment</artifactId>
  198. <version>3.0.2</version>
  199. <optional>true</optional>
  200. </dependency>
  201. <!-- Spring Boot -->
  202. <dependency>
  203. <groupId>org.springframework.boot</groupId>
  204. <artifactId>spring-boot-starter</artifactId>
  205. <version>${spring-boot.version}</version>
  206. <optional>true</optional>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.springframework.boot</groupId>
  210. <artifactId>spring-boot-starter-test</artifactId>
  211. <version>${spring-boot.version}</version>
  212. <scope>test</scope>
  213. </dependency>
  214. <dependency>
  215. <groupId>ch.qos.logback</groupId>
  216. <artifactId>logback-classic</artifactId>
  217. <version>1.2.3</version>
  218. <scope>test</scope>
  219. </dependency>
  220. </dependencies>
  221. </project>