pom.xml 6.6 KB

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