hutool-extra-5.8.35.pom 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  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.35</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.38.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. <dependency>
  139. <groupId>jakarta.mail</groupId>
  140. <artifactId>jakarta.mail-api</artifactId>
  141. <version>2.1.3</version>
  142. <scope>compile</scope>
  143. <optional>true</optional>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.eclipse.angus</groupId>
  147. <artifactId>jakarta.mail</artifactId>
  148. <version>2.0.3</version>
  149. <scope>test</scope>
  150. </dependency>
  151. <!-- SSH安全连接所使用的类库 -->
  152. <dependency>
  153. <groupId>com.jcraft</groupId>
  154. <artifactId>jsch</artifactId>
  155. <version>${jsch.version}</version>
  156. <scope>compile</scope>
  157. <optional>true</optional>
  158. </dependency>
  159. <dependency>
  160. <groupId>com.hierynomus</groupId>
  161. <artifactId>sshj</artifactId>
  162. <version>${sshj.version}</version>
  163. <scope>compile</scope>
  164. <optional>true</optional>
  165. </dependency>
  166. <dependency>
  167. <groupId>ch.ethz.ganymed</groupId>
  168. <artifactId>ganymed-ssh2</artifactId>
  169. <version>262</version>
  170. <scope>compile</scope>
  171. <optional>true</optional>
  172. </dependency>
  173. <!-- 二维码 -->
  174. <dependency>
  175. <groupId>com.google.zxing</groupId>
  176. <artifactId>core</artifactId>
  177. <version>${zxing.version}</version>
  178. <scope>compile</scope>
  179. <optional>true</optional>
  180. </dependency>
  181. <!-- FTP工具 -->
  182. <dependency>
  183. <groupId>commons-net</groupId>
  184. <artifactId>commons-net</artifactId>
  185. <version>${net.version}</version>
  186. <scope>compile</scope>
  187. <optional>true</optional>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.apache.ftpserver</groupId>
  191. <artifactId>ftpserver-core</artifactId>
  192. <version>1.2.0</version>
  193. <scope>compile</scope>
  194. <exclusions>
  195. <exclusion>
  196. <artifactId>slf4j-api</artifactId>
  197. <groupId>org.slf4j</groupId>
  198. </exclusion>
  199. </exclusions>
  200. <optional>true</optional>
  201. </dependency>
  202. <!-- Emoji工具依赖 -->
  203. <dependency>
  204. <groupId>com.vdurmont</groupId>
  205. <artifactId>emoji-java</artifactId>
  206. <version>${emoji-java.version}</version>
  207. <scope>compile</scope>
  208. <optional>true</optional>
  209. </dependency>
  210. <!-- 分词实现 -->
  211. <dependency>
  212. <groupId>org.ansj</groupId>
  213. <artifactId>ansj_seg</artifactId>
  214. <version>5.1.6</version>
  215. <optional>true</optional>
  216. </dependency>
  217. <dependency>
  218. <groupId>com.huaban</groupId>
  219. <artifactId>jieba-analysis</artifactId>
  220. <version>1.0.2</version>
  221. <exclusions>
  222. <exclusion>
  223. <artifactId>commons-lang3</artifactId>
  224. <groupId>org.apache.commons</groupId>
  225. </exclusion>
  226. </exclusions>
  227. <optional>true</optional>
  228. </dependency>
  229. <dependency>
  230. <groupId>org.lionsoul</groupId>
  231. <artifactId>jcseg-core</artifactId>
  232. <version>2.6.3</version>
  233. <optional>true</optional>
  234. </dependency>
  235. <dependency>
  236. <groupId>com.chenlb.mmseg4j</groupId>
  237. <artifactId>mmseg4j-core</artifactId>
  238. <version>1.10.0</version>
  239. <optional>true</optional>
  240. </dependency>
  241. <dependency>
  242. <groupId>com.janeluo</groupId>
  243. <artifactId>ikanalyzer</artifactId>
  244. <version>2012_u6</version>
  245. <optional>true</optional>
  246. <exclusions>
  247. <exclusion>
  248. <groupId>org.apache.lucene</groupId>
  249. <artifactId>lucene-analyzers-common</artifactId>
  250. </exclusion>
  251. <exclusion>
  252. <groupId>org.apache.lucene</groupId>
  253. <artifactId>lucene-queryparser</artifactId>
  254. </exclusion>
  255. <exclusion>
  256. <groupId>org.apache.lucene</groupId>
  257. <artifactId>lucene-core</artifactId>
  258. </exclusion>
  259. </exclusions>
  260. </dependency>
  261. <dependency>
  262. <groupId>com.hankcs</groupId>
  263. <artifactId>hanlp</artifactId>
  264. <version>portable-1.8.4</version>
  265. <optional>true</optional>
  266. </dependency>
  267. <dependency>
  268. <groupId>org.apache.lucene</groupId>
  269. <artifactId>lucene-analyzers-smartcn</artifactId>
  270. <version>8.11.2</version>
  271. <optional>true</optional>
  272. </dependency>
  273. <dependency>
  274. <groupId>org.apdplat</groupId>
  275. <artifactId>word</artifactId>
  276. <version>1.3.1</version>
  277. <exclusions>
  278. <exclusion>
  279. <artifactId>logback-classic</artifactId>
  280. <groupId>ch.qos.logback</groupId>
  281. </exclusion>
  282. <exclusion>
  283. <artifactId>pinyin4j</artifactId>
  284. <groupId>com.belerweb</groupId>
  285. </exclusion>
  286. <exclusion>
  287. <artifactId>slf4j-api</artifactId>
  288. <groupId>org.slf4j</groupId>
  289. </exclusion>
  290. <exclusion>
  291. <artifactId>lucene-analyzers-common</artifactId>
  292. <groupId>org.apache.lucene</groupId>
  293. </exclusion>
  294. <exclusion>
  295. <artifactId>lucene-core</artifactId>
  296. <groupId>org.apache.lucene</groupId>
  297. </exclusion>
  298. <exclusion>
  299. <artifactId>jedis</artifactId>
  300. <groupId>redis.clients</groupId>
  301. </exclusion>
  302. </exclusions>
  303. <optional>true</optional>
  304. </dependency>
  305. <dependency>
  306. <groupId>com.mayabot.mynlp</groupId>
  307. <artifactId>mynlp-segment</artifactId>
  308. <version>3.0.2</version>
  309. <optional>true</optional>
  310. </dependency>
  311. <!-- Spring Boot -->
  312. <dependency>
  313. <groupId>org.springframework.boot</groupId>
  314. <artifactId>spring-boot-starter</artifactId>
  315. <version>${spring-boot.version}</version>
  316. <exclusions>
  317. <exclusion>
  318. <artifactId>spring-expression</artifactId>
  319. <groupId>org.springframework</groupId>
  320. </exclusion>
  321. <exclusion>
  322. <artifactId>slf4j-api</artifactId>
  323. <groupId>org.slf4j</groupId>
  324. </exclusion>
  325. </exclusions>
  326. <optional>true</optional>
  327. </dependency>
  328. <dependency>
  329. <groupId>io.github.biezhi</groupId>
  330. <artifactId>TinyPinyin</artifactId>
  331. <version>2.0.3.RELEASE</version>
  332. <optional>true</optional>
  333. </dependency>
  334. <dependency>
  335. <groupId>com.belerweb</groupId>
  336. <artifactId>pinyin4j</artifactId>
  337. <version>2.5.1</version>
  338. <optional>true</optional>
  339. </dependency>
  340. <dependency>
  341. <groupId>com.github.stuxuhai</groupId>
  342. <artifactId>jpinyin</artifactId>
  343. <version>1.1.8</version>
  344. <optional>true</optional>
  345. </dependency>
  346. <dependency>
  347. <groupId>com.rnkrsoft.bopomofo4j</groupId>
  348. <artifactId>bopomofo4j</artifactId>
  349. <version>1.0.1</version>
  350. <optional>true</optional>
  351. </dependency>
  352. <dependency>
  353. <groupId>com.github.houbb</groupId>
  354. <artifactId>pinyin</artifactId>
  355. <version>0.4.0</version>
  356. <optional>true</optional>
  357. </dependency>
  358. <dependency>
  359. <groupId>cglib</groupId>
  360. <artifactId>cglib</artifactId>
  361. <version>${cglib.version}</version>
  362. <scope>compile</scope>
  363. <optional>true</optional>
  364. </dependency>
  365. <!-- 验证工具可选依赖 begin -->
  366. <dependency>
  367. <groupId>jakarta.validation</groupId>
  368. <artifactId>jakarta.validation-api</artifactId>
  369. <version>3.0.2</version>
  370. <scope>compile</scope>
  371. <optional>true</optional>
  372. </dependency>
  373. <dependency>
  374. <groupId>org.hibernate.validator</groupId>
  375. <artifactId>hibernate-validator</artifactId>
  376. <version>7.0.4.Final</version>
  377. <scope>test</scope>
  378. </dependency>
  379. <dependency>
  380. <groupId>org.glassfish</groupId>
  381. <artifactId>jakarta.el</artifactId>
  382. <version>4.0.2</version>
  383. <scope>test</scope>
  384. </dependency>
  385. <!-- 验证工具可选依赖 end -->
  386. <dependency>
  387. <groupId>org.springframework.boot</groupId>
  388. <artifactId>spring-boot-starter-test</artifactId>
  389. <version>${spring-boot.version}</version>
  390. <scope>test</scope>
  391. <exclusions>
  392. <exclusion>
  393. <artifactId>junit-jupiter</artifactId>
  394. <groupId>org.junit.jupiter</groupId>
  395. </exclusion>
  396. </exclusions>
  397. </dependency>
  398. <dependency>
  399. <groupId>ch.qos.logback</groupId>
  400. <artifactId>logback-classic</artifactId>
  401. <version>1.4.14</version>
  402. <scope>test</scope>
  403. <exclusions>
  404. <exclusion>
  405. <artifactId>slf4j-api</artifactId>
  406. <groupId>org.slf4j</groupId>
  407. </exclusion>
  408. </exclusions>
  409. </dependency>
  410. <!-- 表达式引擎可选依赖 begin -->
  411. <dependency>
  412. <groupId>com.googlecode.aviator</groupId>
  413. <artifactId>aviator</artifactId>
  414. <version>5.4.3</version>
  415. <scope>compile</scope>
  416. <optional>true</optional>
  417. </dependency>
  418. <!-- 手动引入aviator的关联依赖,解决版本问题 -->
  419. <dependency>
  420. <groupId>commons-beanutils</groupId>
  421. <artifactId>commons-beanutils</artifactId>
  422. <version>1.9.4</version>
  423. <scope>test</scope>
  424. </dependency>
  425. <dependency>
  426. <groupId>org.apache.commons</groupId>
  427. <artifactId>commons-jexl3</artifactId>
  428. <version>3.3</version>
  429. <scope>compile</scope>
  430. <optional>true</optional>
  431. </dependency>
  432. <dependency>
  433. <groupId>org.mvel</groupId>
  434. <artifactId>mvel2</artifactId>
  435. <version>2.5.2.Final</version>
  436. <scope>compile</scope>
  437. <optional>true</optional>
  438. </dependency>
  439. <dependency>
  440. <groupId>com.jfirer</groupId>
  441. <artifactId>jfireEl</artifactId>
  442. <version>1.0</version>
  443. <scope>compile</scope>
  444. <optional>true</optional>
  445. </dependency>
  446. <dependency>
  447. <groupId>org.springframework</groupId>
  448. <artifactId>spring-expression</artifactId>
  449. <version>5.3.39</version>
  450. <scope>compile</scope>
  451. <optional>true</optional>
  452. </dependency>
  453. <dependency>
  454. <groupId>org.mozilla</groupId>
  455. <artifactId>rhino</artifactId>
  456. <version>1.7.14</version>
  457. <scope>compile</scope>
  458. <optional>true</optional>
  459. </dependency>
  460. <dependency>
  461. <groupId>com.alibaba</groupId>
  462. <artifactId>QLExpress</artifactId>
  463. <version>3.3.3</version>
  464. <scope>compile</scope>
  465. <optional>true</optional>
  466. </dependency>
  467. <!-- 表达式引擎可选依赖 end -->
  468. <dependency>
  469. <groupId>org.apache.commons</groupId>
  470. <artifactId>commons-compress</artifactId>
  471. <version>1.26.0</version>
  472. <scope>compile</scope>
  473. <optional>true</optional>
  474. </dependency>
  475. </dependencies>
  476. </project>