hutool-extra-5.8.27.pom 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472
  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.8.27</version>
  11. </parent>
  12. <artifactId>hutool-extra</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>Hutool 扩展工具类(提供其它类库的封装)</description>
  15. <properties>
  16. <Automatic-Module-Name>cn.hutool.extra</Automatic-Module-Name>
  17. <!-- versions -->
  18. <velocity.version>2.3</velocity.version>
  19. <beetl.version>3.15.14.RELEASE</beetl.version>
  20. <rythm.version>1.4.2</rythm.version>
  21. <freemarker.version>2.3.32</freemarker.version>
  22. <enjoy.version>5.1.3</enjoy.version>
  23. <thymeleaf.version>3.1.2.RELEASE</thymeleaf.version>
  24. <mail.version>1.6.2</mail.version>
  25. <jsch.version>0.1.55</jsch.version>
  26. <sshj.version>0.37.0</sshj.version>
  27. <zxing.version>3.5.3</zxing.version>
  28. <net.version>3.9.0</net.version>
  29. <emoji-java.version>5.1.1</emoji-java.version>
  30. <servlet-api.version>4.0.1</servlet-api.version>
  31. <spring-boot.version>2.7.18</spring-boot.version>
  32. <cglib.version>3.3.0</cglib.version>
  33. </properties>
  34. <dependencies>
  35. <dependency>
  36. <groupId>cn.hutool</groupId>
  37. <artifactId>hutool-core</artifactId>
  38. <version>${project.parent.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>cn.hutool</groupId>
  42. <artifactId>hutool-setting</artifactId>
  43. <version>${project.parent.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>javax.servlet</groupId>
  47. <artifactId>javax.servlet-api</artifactId>
  48. <version>${servlet-api.version}</version>
  49. <scope>provided</scope>
  50. <optional>true</optional>
  51. </dependency>
  52. <dependency>
  53. <groupId>jakarta.servlet</groupId>
  54. <artifactId>jakarta.servlet-api</artifactId>
  55. <version>5.0.0</version>
  56. <scope>provided</scope>
  57. <optional>true</optional>
  58. </dependency>
  59. <!-- 模板引擎 -->
  60. <dependency>
  61. <groupId>org.apache.velocity</groupId>
  62. <artifactId>velocity-engine-core</artifactId>
  63. <version>${velocity.version}</version>
  64. <scope>compile</scope>
  65. <optional>true</optional>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.ibeetl</groupId>
  69. <artifactId>beetl</artifactId>
  70. <version>${beetl.version}</version>
  71. <scope>compile</scope>
  72. <optional>true</optional>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.rythmengine</groupId>
  76. <artifactId>rythm-engine</artifactId>
  77. <version>${rythm.version}</version>
  78. <scope>compile</scope>
  79. <exclusions>
  80. <exclusion>
  81. <artifactId>commons-lang3</artifactId>
  82. <groupId>org.apache.commons</groupId>
  83. </exclusion>
  84. <exclusion>
  85. <artifactId>mvel2</artifactId>
  86. <groupId>org.mvel</groupId>
  87. </exclusion>
  88. </exclusions>
  89. <optional>true</optional>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.freemarker</groupId>
  93. <artifactId>freemarker</artifactId>
  94. <version>${freemarker.version}</version>
  95. <scope>compile</scope>
  96. <optional>true</optional>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.jfinal</groupId>
  100. <artifactId>enjoy</artifactId>
  101. <version>${enjoy.version}</version>
  102. <scope>compile</scope>
  103. <optional>true</optional>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.thymeleaf</groupId>
  107. <artifactId>thymeleaf</artifactId>
  108. <version>${thymeleaf.version}</version>
  109. <scope>compile</scope>
  110. <exclusions>
  111. <exclusion>
  112. <artifactId>slf4j-api</artifactId>
  113. <groupId>org.slf4j</groupId>
  114. </exclusion>
  115. </exclusions>
  116. <optional>true</optional>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.febit.wit</groupId>
  120. <artifactId>wit-core</artifactId>
  121. <version>2.6.0</version>
  122. <optional>true</optional>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.github.subchen</groupId>
  126. <artifactId>jetbrick-template</artifactId>
  127. <version>2.1.10</version>
  128. <optional>true</optional>
  129. </dependency>
  130. <!-- 邮件 -->
  131. <dependency>
  132. <groupId>com.sun.mail</groupId>
  133. <artifactId>javax.mail</artifactId>
  134. <version>${mail.version}</version>
  135. <scope>compile</scope>
  136. <optional>true</optional>
  137. </dependency>
  138. <!-- SSH安全连接所使用的类库 -->
  139. <dependency>
  140. <groupId>com.jcraft</groupId>
  141. <artifactId>jsch</artifactId>
  142. <version>${jsch.version}</version>
  143. <scope>compile</scope>
  144. <optional>true</optional>
  145. </dependency>
  146. <dependency>
  147. <groupId>com.hierynomus</groupId>
  148. <artifactId>sshj</artifactId>
  149. <version>${sshj.version}</version>
  150. <scope>compile</scope>
  151. <optional>true</optional>
  152. </dependency>
  153. <dependency>
  154. <groupId>ch.ethz.ganymed</groupId>
  155. <artifactId>ganymed-ssh2</artifactId>
  156. <version>262</version>
  157. <scope>compile</scope>
  158. <optional>true</optional>
  159. </dependency>
  160. <!-- 二维码 -->
  161. <dependency>
  162. <groupId>com.google.zxing</groupId>
  163. <artifactId>core</artifactId>
  164. <version>${zxing.version}</version>
  165. <scope>compile</scope>
  166. <optional>true</optional>
  167. </dependency>
  168. <!-- FTP工具 -->
  169. <dependency>
  170. <groupId>commons-net</groupId>
  171. <artifactId>commons-net</artifactId>
  172. <version>${net.version}</version>
  173. <scope>compile</scope>
  174. <optional>true</optional>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.apache.ftpserver</groupId>
  178. <artifactId>ftpserver-core</artifactId>
  179. <version>1.2.0</version>
  180. <scope>compile</scope>
  181. <exclusions>
  182. <exclusion>
  183. <artifactId>slf4j-api</artifactId>
  184. <groupId>org.slf4j</groupId>
  185. </exclusion>
  186. </exclusions>
  187. <optional>true</optional>
  188. </dependency>
  189. <!-- Emoji工具依赖 -->
  190. <dependency>
  191. <groupId>com.vdurmont</groupId>
  192. <artifactId>emoji-java</artifactId>
  193. <version>${emoji-java.version}</version>
  194. <scope>compile</scope>
  195. <optional>true</optional>
  196. </dependency>
  197. <!-- 分词实现 -->
  198. <dependency>
  199. <groupId>org.ansj</groupId>
  200. <artifactId>ansj_seg</artifactId>
  201. <version>5.1.6</version>
  202. <optional>true</optional>
  203. </dependency>
  204. <dependency>
  205. <groupId>com.huaban</groupId>
  206. <artifactId>jieba-analysis</artifactId>
  207. <version>1.0.2</version>
  208. <exclusions>
  209. <exclusion>
  210. <artifactId>commons-lang3</artifactId>
  211. <groupId>org.apache.commons</groupId>
  212. </exclusion>
  213. </exclusions>
  214. <optional>true</optional>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.lionsoul</groupId>
  218. <artifactId>jcseg-core</artifactId>
  219. <version>2.6.3</version>
  220. <optional>true</optional>
  221. </dependency>
  222. <dependency>
  223. <groupId>com.chenlb.mmseg4j</groupId>
  224. <artifactId>mmseg4j-core</artifactId>
  225. <version>1.10.0</version>
  226. <optional>true</optional>
  227. </dependency>
  228. <dependency>
  229. <groupId>com.janeluo</groupId>
  230. <artifactId>ikanalyzer</artifactId>
  231. <version>2012_u6</version>
  232. <optional>true</optional>
  233. <exclusions>
  234. <exclusion>
  235. <groupId>org.apache.lucene</groupId>
  236. <artifactId>lucene-analyzers-common</artifactId>
  237. </exclusion>
  238. <exclusion>
  239. <groupId>org.apache.lucene</groupId>
  240. <artifactId>lucene-queryparser</artifactId>
  241. </exclusion>
  242. <exclusion>
  243. <groupId>org.apache.lucene</groupId>
  244. <artifactId>lucene-core</artifactId>
  245. </exclusion>
  246. </exclusions>
  247. </dependency>
  248. <dependency>
  249. <groupId>com.hankcs</groupId>
  250. <artifactId>hanlp</artifactId>
  251. <version>portable-1.8.4</version>
  252. <optional>true</optional>
  253. </dependency>
  254. <dependency>
  255. <groupId>org.apache.lucene</groupId>
  256. <artifactId>lucene-analyzers-smartcn</artifactId>
  257. <version>8.11.2</version>
  258. <optional>true</optional>
  259. </dependency>
  260. <dependency>
  261. <groupId>org.apdplat</groupId>
  262. <artifactId>word</artifactId>
  263. <version>1.3.1</version>
  264. <exclusions>
  265. <exclusion>
  266. <artifactId>logback-classic</artifactId>
  267. <groupId>ch.qos.logback</groupId>
  268. </exclusion>
  269. <exclusion>
  270. <artifactId>pinyin4j</artifactId>
  271. <groupId>com.belerweb</groupId>
  272. </exclusion>
  273. <exclusion>
  274. <artifactId>slf4j-api</artifactId>
  275. <groupId>org.slf4j</groupId>
  276. </exclusion>
  277. <exclusion>
  278. <artifactId>lucene-analyzers-common</artifactId>
  279. <groupId>org.apache.lucene</groupId>
  280. </exclusion>
  281. <exclusion>
  282. <artifactId>lucene-core</artifactId>
  283. <groupId>org.apache.lucene</groupId>
  284. </exclusion>
  285. <exclusion>
  286. <artifactId>jedis</artifactId>
  287. <groupId>redis.clients</groupId>
  288. </exclusion>
  289. </exclusions>
  290. <optional>true</optional>
  291. </dependency>
  292. <dependency>
  293. <groupId>com.mayabot.mynlp</groupId>
  294. <artifactId>mynlp-segment</artifactId>
  295. <version>3.0.2</version>
  296. <optional>true</optional>
  297. </dependency>
  298. <!-- Spring Boot -->
  299. <dependency>
  300. <groupId>org.springframework.boot</groupId>
  301. <artifactId>spring-boot-starter</artifactId>
  302. <version>${spring-boot.version}</version>
  303. <exclusions>
  304. <exclusion>
  305. <artifactId>spring-expression</artifactId>
  306. <groupId>org.springframework</groupId>
  307. </exclusion>
  308. <exclusion>
  309. <artifactId>slf4j-api</artifactId>
  310. <groupId>org.slf4j</groupId>
  311. </exclusion>
  312. </exclusions>
  313. <optional>true</optional>
  314. </dependency>
  315. <dependency>
  316. <groupId>io.github.biezhi</groupId>
  317. <artifactId>TinyPinyin</artifactId>
  318. <version>2.0.3.RELEASE</version>
  319. <optional>true</optional>
  320. </dependency>
  321. <dependency>
  322. <groupId>com.belerweb</groupId>
  323. <artifactId>pinyin4j</artifactId>
  324. <version>2.5.1</version>
  325. <optional>true</optional>
  326. </dependency>
  327. <dependency>
  328. <groupId>com.github.stuxuhai</groupId>
  329. <artifactId>jpinyin</artifactId>
  330. <version>1.1.8</version>
  331. <optional>true</optional>
  332. </dependency>
  333. <dependency>
  334. <groupId>com.rnkrsoft.bopomofo4j</groupId>
  335. <artifactId>bopomofo4j</artifactId>
  336. <version>1.0.1</version>
  337. <optional>true</optional>
  338. </dependency>
  339. <dependency>
  340. <groupId>com.github.houbb</groupId>
  341. <artifactId>pinyin</artifactId>
  342. <version>0.4.0</version>
  343. <optional>true</optional>
  344. </dependency>
  345. <dependency>
  346. <groupId>cglib</groupId>
  347. <artifactId>cglib</artifactId>
  348. <version>${cglib.version}</version>
  349. <scope>compile</scope>
  350. <optional>true</optional>
  351. </dependency>
  352. <!-- 验证工具可选依赖 begin -->
  353. <dependency>
  354. <groupId>jakarta.validation</groupId>
  355. <artifactId>jakarta.validation-api</artifactId>
  356. <version>3.0.2</version>
  357. <scope>compile</scope>
  358. <optional>true</optional>
  359. </dependency>
  360. <dependency>
  361. <groupId>org.hibernate.validator</groupId>
  362. <artifactId>hibernate-validator</artifactId>
  363. <version>7.0.4.Final</version>
  364. <scope>test</scope>
  365. </dependency>
  366. <dependency>
  367. <groupId>org.glassfish</groupId>
  368. <artifactId>jakarta.el</artifactId>
  369. <version>4.0.2</version>
  370. <scope>test</scope>
  371. </dependency>
  372. <!-- 验证工具可选依赖 end -->
  373. <dependency>
  374. <groupId>org.springframework.boot</groupId>
  375. <artifactId>spring-boot-starter-test</artifactId>
  376. <version>${spring-boot.version}</version>
  377. <scope>test</scope>
  378. <exclusions>
  379. <exclusion>
  380. <artifactId>junit-jupiter</artifactId>
  381. <groupId>org.junit.jupiter</groupId>
  382. </exclusion>
  383. </exclusions>
  384. </dependency>
  385. <dependency>
  386. <groupId>ch.qos.logback</groupId>
  387. <artifactId>logback-classic</artifactId>
  388. <version>1.4.14</version>
  389. <scope>test</scope>
  390. <exclusions>
  391. <exclusion>
  392. <artifactId>slf4j-api</artifactId>
  393. <groupId>org.slf4j</groupId>
  394. </exclusion>
  395. </exclusions>
  396. </dependency>
  397. <!-- 表达式引擎可选依赖 begin -->
  398. <dependency>
  399. <groupId>com.googlecode.aviator</groupId>
  400. <artifactId>aviator</artifactId>
  401. <version>5.4.1</version>
  402. <scope>compile</scope>
  403. <optional>true</optional>
  404. </dependency>
  405. <!-- 手动引入aviator的关联依赖,解决版本问题 -->
  406. <dependency>
  407. <groupId>commons-beanutils</groupId>
  408. <artifactId>commons-beanutils</artifactId>
  409. <version>1.9.4</version>
  410. <scope>test</scope>
  411. </dependency>
  412. <dependency>
  413. <groupId>org.apache.commons</groupId>
  414. <artifactId>commons-jexl3</artifactId>
  415. <version>3.3</version>
  416. <scope>compile</scope>
  417. <optional>true</optional>
  418. </dependency>
  419. <dependency>
  420. <groupId>org.mvel</groupId>
  421. <artifactId>mvel2</artifactId>
  422. <version>2.5.2.Final</version>
  423. <scope>compile</scope>
  424. <optional>true</optional>
  425. </dependency>
  426. <dependency>
  427. <groupId>com.jfirer</groupId>
  428. <artifactId>jfireEl</artifactId>
  429. <version>1.0</version>
  430. <scope>compile</scope>
  431. <optional>true</optional>
  432. </dependency>
  433. <dependency>
  434. <groupId>org.springframework</groupId>
  435. <artifactId>spring-expression</artifactId>
  436. <version>5.3.30</version>
  437. <scope>compile</scope>
  438. <optional>true</optional>
  439. </dependency>
  440. <dependency>
  441. <groupId>org.mozilla</groupId>
  442. <artifactId>rhino</artifactId>
  443. <version>1.7.14</version>
  444. <scope>compile</scope>
  445. <optional>true</optional>
  446. </dependency>
  447. <dependency>
  448. <groupId>com.alibaba</groupId>
  449. <artifactId>QLExpress</artifactId>
  450. <version>3.3.2</version>
  451. <scope>compile</scope>
  452. <optional>true</optional>
  453. </dependency>
  454. <!-- 表达式引擎可选依赖 end -->
  455. <dependency>
  456. <groupId>org.apache.commons</groupId>
  457. <artifactId>commons-compress</artifactId>
  458. <version>1.26.0</version>
  459. <scope>compile</scope>
  460. <optional>true</optional>
  461. </dependency>
  462. </dependencies>
  463. </project>