pom.xml 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055
  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/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <packaging>pom</packaging>
  7. <groupId>com.daju</groupId>
  8. <artifactId>daju</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <properties>
  11. <mybatis.version>3.5.6</mybatis.version>
  12. <spring.version>5.2.0.RELEASE</spring.version>
  13. <spring.data.version>1.7.1.RELEASE</spring.data.version>
  14. <jackson.version>2.11.4</jackson.version>
  15. <json-lib.version>2.1</json-lib.version>
  16. <configuration.version>1.7</configuration.version>
  17. <mysql.driver.version>5.1.47</mysql.driver.version>
  18. <servlet-api.version>3.0.1</servlet-api.version>
  19. <druid.version>1.1.21</druid.version>
  20. <slf4j.version>1.7.22</slf4j.version>
  21. <lib.path>${basedir}/daju/lib</lib.path>
  22. <easypoi.version>4.1.0</easypoi.version>
  23. <apachepoi.version>4.1.2</apachepoi.version>
  24. <!-- jeasypoi 工具类 -->
  25. <jeasypoi.version>2.1.9</jeasypoi.version>
  26. <gson.version>2.2.4</gson.version>
  27. <!-- jeecg-p3 -->
  28. <jeecg-p3-core.version>1.0.0</jeecg-p3-core.version>
  29. <jeecg-p3-biz-demo.version>1.0.2</jeecg-p3-biz-demo.version>
  30. <jeecg-p3-biz-chat.version>1.0.5</jeecg-p3-biz-chat.version>
  31. <jeecg-p3-biz-mail.version>1.0.0</jeecg-p3-biz-mail.version>
  32. <pinyin4j.version>2.5.1</pinyin4j.version>
  33. <dom4j.version>1.6.1</dom4j.version>
  34. <!-- 测试依赖包 -->
  35. <junit.version>4.7</junit.version>
  36. <hamcrest.version>1.3</hamcrest.version>
  37. <!-- 辅助依赖包 -->
  38. <jodd.version>3.3.7</jodd.version>
  39. <ant.version>1.6.5</ant.version>
  40. <commons-codec.version>1.13</commons-codec.version>
  41. <commons-io.version>1.3.2</commons-io.version>
  42. <commons-beanutils.version>1.8.3</commons-beanutils.version>
  43. <commons-fileupload.version>1.2.1</commons-fileupload.version>
  44. <commons-lang.version>2.6</commons-lang.version>
  45. <commons-lang3.version>3.12.0</commons-lang3.version>
  46. <commons-email.version>1.2</commons-email.version>
  47. <!-- cxf webservice -->
  48. <cxf.version>3.0.2</cxf.version>
  49. <!-- jacob -->
  50. <jacob.version>1.18</jacob.version>
  51. <!-- oracle 11g -->
  52. <ojdbc14.version>10.2.0.5.0</ojdbc14.version>
  53. <!-- openoffice -->
  54. <openoffice.version>3.2.1</openoffice.version>
  55. <jodconverter.version>3.0-beta-4</jodconverter.version>
  56. <!-- java生成缩略图 -->
  57. <thumbnailator.version>0.4.6</thumbnailator.version>
  58. <!-- highchart export -->
  59. <xercesImpl.version>2.7.1</xercesImpl.version>
  60. <batik-codec.version>1.7</batik-codec.version>
  61. <xstream.version>1.4.4</xstream.version>
  62. <!-- jsoup HTML parser -->
  63. <jsoup.version>1.8.3</jsoup.version>
  64. <!-- kisso 单点登陆 -->
  65. <kisso.version>3.6.11</kisso.version>
  66. <activiti.version>5.15</activiti.version>
  67. </properties>
  68. <!-- 设定主仓库,按设定顺序进行查找 -->
  69. <repositories>
  70. <repository>
  71. <id>aliyun</id>
  72. <name>aliyun Repository</name>
  73. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  74. <snapshots>
  75. <enabled>false</enabled>
  76. </snapshots>
  77. </repository>
  78. <repository>
  79. <id>jeecg</id>
  80. <name>jeecg Repository</name>
  81. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  82. <snapshots>
  83. <enabled>false</enabled>
  84. </snapshots>
  85. </repository>
  86. <repository>
  87. <id>jeecg-snapshots</id>
  88. <name>jeecg-snapshots Repository</name>
  89. <url>http://maven.jeecg.org/nexus/content/repositories/snapshots</url>
  90. <snapshots>
  91. <enabled>true</enabled>
  92. </snapshots>
  93. </repository>
  94. </repositories>
  95. <dependencies>
  96. <dependency>
  97. <groupId>com.aliyun</groupId>
  98. <artifactId>dingtalk</artifactId>
  99. <version>1.2.8</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.aliyun</groupId>
  103. <artifactId>alibaba-dingtalk-service-sdk</artifactId>
  104. <version>2.0.0</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.locationtech.jts</groupId>
  108. <artifactId>jts-core</artifactId>
  109. <version>1.18.2</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.amazonaws</groupId>
  113. <artifactId>aws-java-sdk-s3</artifactId>
  114. <version>1.12.105</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>ink.aos.module</groupId>
  118. <artifactId>aos-dingtalk</artifactId>
  119. <version>3.0.0</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>ink.aos.module</groupId>
  123. <artifactId>aos-dingtalk</artifactId>
  124. <version>3.0.0</version>
  125. <classifier>javadoc</classifier>
  126. </dependency>
  127. <dependency>
  128. <groupId>ink.aos.module</groupId>
  129. <artifactId>aos-dingtalk</artifactId>
  130. <version>3.0.0</version>
  131. <classifier>sources</classifier>
  132. </dependency>
  133. <dependency>
  134. <groupId>cn.hutool</groupId>
  135. <artifactId>hutool-all</artifactId>
  136. <version>4.6.1</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>javax.validation</groupId>
  140. <artifactId>validation-api</artifactId>
  141. <version>1.1.0.Final</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>javax.servlet</groupId>
  145. <artifactId>javax.servlet-api</artifactId>
  146. <version>${servlet-api.version}</version>
  147. <scope>provided</scope>
  148. </dependency>
  149. <dependency>
  150. <groupId>javax.servlet.jsp</groupId>
  151. <artifactId>jsp-api</artifactId>
  152. <version>2.2</version>
  153. <scope>provided</scope>
  154. </dependency>
  155. <!-- connection pool -->
  156. <dependency>
  157. <groupId>com.alibaba</groupId>
  158. <artifactId>druid</artifactId>
  159. <version>1.2.8</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.springframework</groupId>
  163. <artifactId>spring-web</artifactId>
  164. <version>${spring.version}</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.springframework</groupId>
  168. <artifactId>spring-core</artifactId>
  169. <version>${spring.version}</version>
  170. <exclusions>
  171. <exclusion>
  172. <groupId>commons-logging</groupId>
  173. <artifactId>commons-logging</artifactId>
  174. </exclusion>
  175. </exclusions>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.springframework</groupId>
  179. <artifactId>spring-beans</artifactId>
  180. <version>${spring.version}</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.springframework</groupId>
  184. <artifactId>spring-context</artifactId>
  185. <version>${spring.version}</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.springframework</groupId>
  189. <artifactId>spring-context-support</artifactId>
  190. <version>${spring.version}</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.springframework</groupId>
  194. <artifactId>spring-aop</artifactId>
  195. <version>${spring.version}</version>
  196. <exclusions>
  197. <exclusion>
  198. <groupId>commons-logging</groupId>
  199. <artifactId>commons-logging</artifactId>
  200. </exclusion>
  201. </exclusions>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.springframework</groupId>
  205. <artifactId>spring-tx</artifactId>
  206. <version>${spring.version}</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.springframework.data</groupId>
  210. <artifactId>spring-data-redis</artifactId>
  211. <version>${spring.data.version}</version>
  212. <exclusions>
  213. <exclusion>
  214. <groupId>org.slf4j</groupId>
  215. <artifactId>slf4j-api</artifactId>
  216. </exclusion>
  217. <exclusion>
  218. <groupId>org.slf4j</groupId>
  219. <artifactId>jcl-over-slf4j</artifactId>
  220. </exclusion>
  221. </exclusions>
  222. </dependency>
  223. <dependency>
  224. <groupId>org.springframework</groupId>
  225. <artifactId>spring-jms</artifactId>
  226. <version>${spring.version}</version>
  227. </dependency>
  228. <!-- spring orm -->
  229. <dependency>
  230. <groupId>org.springframework</groupId>
  231. <artifactId>spring-orm</artifactId>
  232. <version>${spring.version}</version>
  233. </dependency>
  234. <dependency>
  235. <groupId>org.springframework</groupId>
  236. <artifactId>spring-jdbc</artifactId>
  237. <version>${spring.version}</version>
  238. </dependency>
  239. <dependency>
  240. <groupId>org.springframework</groupId>
  241. <artifactId>spring-webmvc</artifactId>
  242. <version>${spring.version}</version>
  243. </dependency>
  244. <dependency>
  245. <groupId>org.springframework</groupId>
  246. <artifactId>spring-oxm</artifactId>
  247. <version>${spring.version}</version>
  248. </dependency>
  249. <dependency>
  250. <groupId>com.baomidou</groupId>
  251. <artifactId>mybatis-plus-boot-starter</artifactId>
  252. <version>3.4.2</version>
  253. <exclusions>
  254. <exclusion>
  255. <groupId>org.apache.logging.log4j</groupId>
  256. <artifactId>log4j-to-slf4j</artifactId>
  257. </exclusion>
  258. <exclusion>
  259. <groupId>ch.qos.logback</groupId>
  260. <artifactId>logback-classic</artifactId>
  261. </exclusion>
  262. </exclusions>
  263. </dependency>
  264. <!-- hibernate -->
  265. <dependency>
  266. <groupId>org.hibernate</groupId>
  267. <artifactId>hibernate-core</artifactId>
  268. <version>5.5.0.Final</version>
  269. </dependency>
  270. <dependency>
  271. <groupId>org.hibernate</groupId>
  272. <artifactId>hibernate-ehcache</artifactId>
  273. <version>5.5.0.Final</version>
  274. </dependency>
  275. <!-- <dependency>-->
  276. <!-- <groupId>org.hibernate</groupId>-->
  277. <!-- <artifactId>hibernate-jcache</artifactId>-->
  278. <!-- <version>5.5.0.Final</version>-->
  279. <!-- </dependency>-->
  280. <dependency>
  281. <groupId>org.hibernate</groupId>
  282. <artifactId>hibernate-proxool</artifactId>
  283. <version>5.5.0.Final</version>
  284. </dependency>
  285. <dependency>
  286. <groupId>org.hibernate</groupId>
  287. <artifactId>hibernate-validator-annotation-processor</artifactId>
  288. <version>5.4.3.Final</version>
  289. </dependency>
  290. <!-- <dependency>-->
  291. <!-- <groupId>org.hibernate</groupId>-->
  292. <!-- <artifactId>hibernate-commons-annotations</artifactId>-->
  293. <!-- <version>3.2.0.Final</version>-->
  294. <!-- </dependency>-->
  295. <dependency>
  296. <groupId>org.hibernate</groupId>
  297. <artifactId>hibernate-validator</artifactId>
  298. <version>5.4.3.Final</version>
  299. </dependency>
  300. <dependency>
  301. <groupId>org.hibernate.javax.persistence</groupId>
  302. <artifactId>hibernate-jpa-2.2-api</artifactId>
  303. <version>1.0.0.Beta2</version>
  304. </dependency>
  305. <!-- jackson json -->
  306. <dependency>
  307. <groupId>com.alibaba</groupId>
  308. <artifactId>fastjson</artifactId>
  309. <version>1.2.15</version>
  310. </dependency>
  311. <dependency>
  312. <groupId>com.fasterxml.jackson.core</groupId>
  313. <artifactId>jackson-core</artifactId>
  314. <version>${jackson.version}</version>
  315. </dependency>
  316. <dependency>
  317. <groupId>com.fasterxml.jackson.core</groupId>
  318. <artifactId>jackson-databind</artifactId>
  319. <version>${jackson.version}</version>
  320. </dependency>
  321. <dependency>
  322. <groupId>com.fasterxml.jackson.core</groupId>
  323. <artifactId>jackson-annotations</artifactId>
  324. <version>${jackson.version}</version>
  325. </dependency>
  326. <dependency>
  327. <groupId>com.fasterxml.jackson.module</groupId>
  328. <artifactId>jackson-module-jaxb-annotations</artifactId>
  329. <version>${jackson.version}</version>
  330. </dependency>
  331. <dependency>
  332. <groupId>com.fasterxml.jackson.datatype</groupId>
  333. <artifactId>jackson-datatype-jsr310</artifactId>
  334. <version>${jackson.version}</version>
  335. </dependency>
  336. <dependency>
  337. <groupId>com.fasterxml</groupId>
  338. <artifactId>classmate</artifactId>
  339. <version>1.5.1</version>
  340. </dependency>
  341. <!-- Swagger -->
  342. <dependency>
  343. <groupId>io.springfox</groupId>
  344. <artifactId>springfox-swagger2</artifactId>
  345. <version>2.1.0</version>
  346. </dependency>
  347. <dependency>
  348. <groupId>com.github.xiaoymin</groupId>
  349. <artifactId>swagger-bootstrap-ui</artifactId>
  350. <version>1.6</version>
  351. </dependency>
  352. <!-- jdbc driver -->
  353. <dependency>
  354. <groupId>mysql</groupId>
  355. <artifactId>mysql-connector-java</artifactId>
  356. <version>${mysql.driver.version}</version>
  357. </dependency>
  358. <dependency>
  359. <groupId>commons-configuration</groupId>
  360. <artifactId>commons-configuration</artifactId>
  361. <version>1.10</version>
  362. </dependency>
  363. <dependency>
  364. <groupId>org.freemarker</groupId>
  365. <artifactId>freemarker</artifactId>
  366. <version>2.3.20</version>
  367. </dependency>
  368. <dependency>
  369. <groupId>org.quartz-scheduler</groupId>
  370. <artifactId>quartz</artifactId>
  371. <version>2.3.2</version>
  372. </dependency>
  373. <dependency>
  374. <groupId>org.quartz-scheduler</groupId>
  375. <artifactId>quartz-jobs</artifactId>
  376. <version>2.3.2</version>
  377. </dependency>
  378. <dependency>
  379. <groupId>org.aspectj</groupId>
  380. <artifactId>aspectjrt</artifactId>
  381. <version>1.8.9</version>
  382. </dependency>
  383. <dependency>
  384. <groupId>org.aspectj</groupId>
  385. <artifactId>aspectjweaver</artifactId>
  386. <version>1.8.9</version>
  387. </dependency>
  388. <!-- activemq -->
  389. <dependency>
  390. <groupId>org.apache.activemq</groupId>
  391. <artifactId>activemq-core</artifactId>
  392. <version>5.7.0</version>
  393. </dependency>
  394. <dependency>
  395. <groupId>org.apache.activemq</groupId>
  396. <artifactId>activemq-pool</artifactId>
  397. <version>5.15.14</version>
  398. </dependency>
  399. <dependency>
  400. <groupId>org.codehaus.groovy</groupId>
  401. <artifactId>groovy</artifactId>
  402. <version>3.0.8</version>
  403. </dependency>
  404. <!-- poi-->
  405. <!-- jeasypoi 工具类 -->
  406. <dependency>
  407. <groupId>org.jeecgframework</groupId>
  408. <artifactId>jeasypoi-web</artifactId>
  409. <version>${jeasypoi.version}</version>
  410. </dependency>
  411. <dependency>
  412. <groupId>org.apache.poi</groupId>
  413. <artifactId>poi</artifactId>
  414. <version>${apachepoi.version}</version>
  415. </dependency>
  416. <dependency>
  417. <groupId>org.apache.poi</groupId>
  418. <artifactId>poi-ooxml</artifactId>
  419. <version>${apachepoi.version}</version>
  420. </dependency>
  421. <dependency>
  422. <groupId>org.apache.poi</groupId>
  423. <artifactId>poi-ooxml-schemas</artifactId>
  424. <version>${apachepoi.version}</version>
  425. </dependency>
  426. <dependency>
  427. <groupId>org.apache.poi</groupId>
  428. <artifactId>poi-scratchpad</artifactId>
  429. <version>${apachepoi.version}</version>
  430. </dependency>
  431. <dependency>
  432. <groupId>org.apache.velocity</groupId>
  433. <artifactId>velocity</artifactId>
  434. <version>1.7</version>
  435. </dependency>
  436. <dependency>
  437. <groupId>org.apache.velocity</groupId>
  438. <artifactId>velocity-tools</artifactId>
  439. <version>2.0</version>
  440. <exclusions>
  441. <exclusion>
  442. <artifactId>dom4j</artifactId>
  443. <groupId>dom4j</groupId>
  444. </exclusion>
  445. </exclusions>
  446. </dependency>
  447. <dependency>
  448. <groupId>org.bouncycastle</groupId>
  449. <artifactId>bcpkix-jdk15on</artifactId>
  450. <version>1.59</version>
  451. </dependency>
  452. <dependency>
  453. <groupId>xalan</groupId>
  454. <artifactId>xalan</artifactId>
  455. <version>2.7.1</version>
  456. </dependency>
  457. <dependency>
  458. <groupId>xerces</groupId>
  459. <artifactId>xercesImpl</artifactId>
  460. <version>2.9.1</version>
  461. </dependency>
  462. <dependency>
  463. <groupId>org.apache.xmlbeans</groupId>
  464. <artifactId>xmlbeans</artifactId>
  465. <version>4.0.0</version>
  466. </dependency>
  467. <!-- <dependency>-->
  468. <!-- <groupId>batik</groupId>-->
  469. <!-- <artifactId>batik</artifactId>-->
  470. <!-- <version>1.5</version>-->
  471. <!-- </dependency>-->
  472. <!-- LOGGING begin -->
  473. <dependency>
  474. <groupId>org.slf4j</groupId>
  475. <artifactId>slf4j-api</artifactId>
  476. <version>${slf4j.version}</version>
  477. </dependency>
  478. <!-- <dependency>-->
  479. <!-- <groupId>org.slf4j</groupId>-->
  480. <!-- <artifactId>slf4j-log4j12</artifactId>-->
  481. <!-- <version>${slf4j.version}</version>-->
  482. <!-- </dependency>-->
  483. <!-- &lt;!&ndash; common-logging 实际调用slf4j &ndash;&gt;-->
  484. <!-- <dependency>-->
  485. <!-- <groupId>org.slf4j</groupId>-->
  486. <!-- <artifactId>jcl-over-slf4j</artifactId>-->
  487. <!-- <version>${slf4j.version}</version>-->
  488. <!-- </dependency>-->
  489. <!-- &lt;!&ndash; java.util.logging 实际调用slf4j &ndash;&gt;-->
  490. <!-- <dependency>-->
  491. <!-- <groupId>org.slf4j</groupId>-->
  492. <!-- <artifactId>jul-to-slf4j</artifactId>-->
  493. <!-- <version>${slf4j.version}</version>-->
  494. <!-- </dependency>-->
  495. <dependency>
  496. <groupId>org.apache.logging.log4j</groupId>
  497. <artifactId>log4j-1.2-api</artifactId>
  498. <version>2.14.1</version>
  499. </dependency>
  500. <dependency>
  501. <groupId>org.apache.logging.log4j</groupId>
  502. <artifactId>log4j-api</artifactId>
  503. <version>2.10.0</version>
  504. </dependency>
  505. <dependency>
  506. <groupId>org.apache.logging.log4j</groupId>
  507. <artifactId>log4j-core</artifactId>
  508. <version>2.10.0</version>
  509. </dependency>
  510. <dependency>
  511. <groupId>org.apache.logging.log4j</groupId>
  512. <artifactId>log4j-web</artifactId>
  513. <version>2.9.1</version>
  514. </dependency>
  515. <!-- LOGGING end -->
  516. <dependency>
  517. <groupId>com.github.binarywang</groupId>
  518. <artifactId>weixin-java-common</artifactId>
  519. <version>3.5.0</version>
  520. </dependency>
  521. <dependency>
  522. <groupId>com.github.binarywang</groupId>
  523. <artifactId>weixin-java-miniapp</artifactId>
  524. <version>3.5.0</version>
  525. <exclusions>
  526. <exclusion>
  527. <groupId>org.bouncycastle</groupId>
  528. <artifactId>bcpkix-jdk15on</artifactId>
  529. </exclusion>
  530. </exclusions>
  531. </dependency>
  532. <!--easypoi-->
  533. <dependency>
  534. <groupId>cn.afterturn</groupId>
  535. <artifactId>easypoi-base</artifactId>
  536. <version>${easypoi.version}</version>
  537. <exclusions>
  538. <exclusion>
  539. <groupId>ognl</groupId>
  540. <artifactId>ognl</artifactId>
  541. </exclusion>
  542. </exclusions>
  543. </dependency>
  544. <dependency>
  545. <groupId>cn.afterturn</groupId>
  546. <artifactId>easypoi-web</artifactId>
  547. <version>${easypoi.version}</version>
  548. </dependency>
  549. <dependency>
  550. <groupId>cn.afterturn</groupId>
  551. <artifactId>easypoi-annotation</artifactId>
  552. <version>${easypoi.version}</version>
  553. </dependency>
  554. <!--解决minidao 依赖 MemberAccess implementation must be provided!-->
  555. <dependency>
  556. <groupId>ognl</groupId>
  557. <artifactId>ognl</artifactId>
  558. <version>2.7.3</version>
  559. </dependency>
  560. <dependency>
  561. <groupId>org.apache.tomcat</groupId>
  562. <artifactId>tomcat-jasper</artifactId>
  563. <scope>provided</scope>
  564. <version>8.5.43</version>
  565. </dependency>
  566. <!-- <dependency>-->
  567. <!-- <groupId>org.apache.tomcat</groupId>-->
  568. <!-- <artifactId>tomcat-coyote</artifactId>-->
  569. <!-- <scope>provided</scope>-->
  570. <!-- <version>9.0.45</version>-->
  571. <!-- </dependency>-->
  572. <!-- minidao -->
  573. <dependency>
  574. <groupId>org.jeecgframework</groupId>
  575. <artifactId>minidao-pe</artifactId>
  576. <version>1.6.7</version>
  577. </dependency>
  578. <!-- Jeecg Plugin begin -->
  579. <!-- p3 core -->
  580. <dependency>
  581. <groupId>org.jeecgframework.p3</groupId>
  582. <artifactId>jeecg-p3-core-api</artifactId>
  583. <version>${jeecg-p3-core.version}</version>
  584. </dependency>
  585. <dependency>
  586. <groupId>org.jeecgframework.p3</groupId>
  587. <artifactId>jeecg-p3-core-ui</artifactId>
  588. <version>${jeecg-p3-core.version}</version>
  589. </dependency>
  590. <dependency>
  591. <groupId>org.p3framework</groupId>
  592. <artifactId>jeecg-p3-generate</artifactId>
  593. <version>1.1-SNAPSHOT</version>
  594. </dependency>
  595. <dependency>
  596. <groupId>org.jeecgframework</groupId>
  597. <artifactId>codegenerate</artifactId>
  598. <version>3.6.4</version>
  599. </dependency>
  600. <!-- 插件:Demo -->
  601. <dependency>
  602. <groupId>org.jeecgframework.p3</groupId>
  603. <artifactId>jeecg-p3-biz-demo</artifactId>
  604. <version>${jeecg-p3-biz-demo.version}</version>
  605. <exclusions>
  606. <exclusion>
  607. <groupId>org.jeecgframework.p3</groupId>
  608. <artifactId>jeecg-p3-start-quick</artifactId>
  609. </exclusion>
  610. </exclusions>
  611. </dependency>
  612. <!-- 插件:在线聊天 -->
  613. <dependency>
  614. <groupId>org.jeecgframework.p3</groupId>
  615. <artifactId>jeecg-p3-biz-chat</artifactId>
  616. <version>${jeecg-p3-biz-chat.version}</version>
  617. <exclusions>
  618. <exclusion>
  619. <groupId>org.jeecgframework.p3</groupId>
  620. <artifactId>jeecg-p3-start-quick</artifactId>
  621. </exclusion>
  622. </exclusions>
  623. </dependency>
  624. <!-- 插件: 我的邮箱-->
  625. <dependency>
  626. <groupId>org.jeecgframework.p3</groupId>
  627. <artifactId>jeecg-p3-biz-mail</artifactId>
  628. <version>${jeecg-p3-biz-mail.version}</version>
  629. <exclusions>
  630. <exclusion>
  631. <groupId>org.jeecgframework.p3</groupId>
  632. <artifactId>jeecg-p3-start-quick</artifactId>
  633. </exclusion>
  634. </exclusions>
  635. </dependency>
  636. <!-- Jeecg Plugin end -->
  637. <!-- pinyin4j -->
  638. <dependency>
  639. <groupId>com.belerweb</groupId>
  640. <artifactId>pinyin4j</artifactId>
  641. <version>${pinyin4j.version}</version>
  642. </dependency>
  643. <!-- dom4j -->
  644. <dependency>
  645. <groupId>dom4j</groupId>
  646. <artifactId>dom4j</artifactId>
  647. <version>${dom4j.version}</version>
  648. <exclusions>
  649. <exclusion>
  650. <groupId>xml-apis</groupId>
  651. <artifactId>xml-apis</artifactId>
  652. </exclusion>
  653. </exclusions>
  654. </dependency>
  655. <dependency>
  656. <groupId>org.projectlombok</groupId>
  657. <artifactId>lombok</artifactId>
  658. <version>1.18.4</version>
  659. </dependency>
  660. <!-- TEST begin -->
  661. <!-- junit -->
  662. <dependency>
  663. <groupId>junit</groupId>
  664. <artifactId>junit</artifactId>
  665. <version>${junit.version}</version>
  666. </dependency>
  667. <dependency>
  668. <groupId>org.hamcrest</groupId>
  669. <artifactId>hamcrest-all</artifactId>
  670. <version>${hamcrest.version}</version>
  671. </dependency>
  672. <dependency>
  673. <groupId>org.hamcrest</groupId>
  674. <artifactId>hamcrest-core</artifactId>
  675. <version>${hamcrest.version}</version>
  676. </dependency>
  677. <!-- TEST end -->
  678. <!-- 辅助依赖包 _start -->
  679. <dependency>
  680. <groupId>org.jodd</groupId>
  681. <artifactId>jodd</artifactId>
  682. <version>${jodd.version}</version>
  683. </dependency>
  684. <dependency>
  685. <groupId>ant</groupId>
  686. <artifactId>ant</artifactId>
  687. <version>${ant.version}</version>
  688. </dependency>
  689. <!-- commons-beanutils -->
  690. <dependency>
  691. <groupId>commons-beanutils</groupId>
  692. <artifactId>commons-beanutils</artifactId>
  693. <version>${commons-beanutils.version}</version>
  694. </dependency>
  695. <!-- commons-codec -->
  696. <dependency>
  697. <groupId>commons-codec</groupId>
  698. <artifactId>commons-codec</artifactId>
  699. <version>${commons-codec.version}</version>
  700. </dependency>
  701. <!-- commons-io -->
  702. <dependency>
  703. <groupId>commons-io</groupId>
  704. <artifactId>commons-io</artifactId>
  705. <version>${commons-io.version}</version>
  706. </dependency>
  707. <!-- commons-fileupload -->
  708. <dependency>
  709. <groupId>commons-fileupload</groupId>
  710. <artifactId>commons-fileupload</artifactId>
  711. <version>${commons-fileupload.version}</version>
  712. </dependency>
  713. <!-- commons-lang -->
  714. <dependency>
  715. <groupId>commons-lang</groupId>
  716. <artifactId>commons-lang</artifactId>
  717. <version>${commons-lang.version}</version>
  718. </dependency>
  719. <!-- <dependency>-->
  720. <!-- <groupId>org.apache.commons</groupId>-->
  721. <!-- <artifactId>commons-chalics</artifactId>-->
  722. <!-- <version>2.6</version>-->
  723. <!-- </dependency>-->
  724. <!-- commons-lang3 -->
  725. <dependency>
  726. <groupId>org.apache.commons</groupId>
  727. <artifactId>commons-lang3</artifactId>
  728. <version>${commons-lang3.version}</version>
  729. </dependency>
  730. <!-- commons-email -->
  731. <dependency>
  732. <groupId>org.apache.commons</groupId>
  733. <artifactId>commons-email</artifactId>
  734. <version>1.2</version>
  735. </dependency>
  736. <!-- commons-httpclient -->
  737. <dependency>
  738. <groupId>commons-httpclient</groupId>
  739. <artifactId>commons-httpclient</artifactId>
  740. <version>3.0.1</version>
  741. </dependency>
  742. <!-- commons-net-ftp -->
  743. <dependency>
  744. <groupId>commons-net</groupId>
  745. <artifactId>commons-net</artifactId>
  746. <version>3.6</version>
  747. </dependency>
  748. <!-- ehcache -->
  749. <dependency>
  750. <groupId>net.sf.ehcache</groupId>
  751. <artifactId>ehcache-core</artifactId>
  752. <version>2.4.3</version>
  753. </dependency>
  754. <dependency>
  755. <groupId>org.apache.httpcomponents</groupId>
  756. <artifactId>httpclient</artifactId>
  757. <version>4.4.1</version>
  758. </dependency>
  759. <dependency>
  760. <groupId>org.apache.httpcomponents</groupId>
  761. <artifactId>httpcore</artifactId>
  762. <version>4.4.1</version>
  763. </dependency>
  764. <dependency>
  765. <groupId>org.apache.httpcomponents</groupId>
  766. <artifactId>httpcore-nio</artifactId>
  767. <version>4.4.1</version>
  768. </dependency>
  769. <dependency>
  770. <groupId>org.apache.httpcomponents</groupId>
  771. <artifactId>httpmime</artifactId>
  772. <version>4.4.1</version>
  773. </dependency>
  774. <!-- jsoup HTML parser library @ http://jsoup.org/ -->
  775. <dependency>
  776. <groupId>org.jsoup</groupId>
  777. <artifactId>jsoup</artifactId>
  778. <version>${jsoup.version}</version>
  779. </dependency>
  780. <dependency>
  781. <groupId>com.thoughtworks.xstream</groupId>
  782. <artifactId>xstream</artifactId>
  783. <version>1.4.4</version>
  784. </dependency>
  785. <!-- kisso begin -->
  786. <dependency>
  787. <groupId>com.baomidou</groupId>
  788. <artifactId>kisso</artifactId>
  789. <version>${kisso.version}</version>
  790. </dependency>
  791. <!-- kisso end -->
  792. <!-- https://mvnrepository.com/artifact/com.lowagie/itext-rtf -->
  793. <dependency>
  794. <groupId>com.lowagie</groupId>
  795. <artifactId>itext</artifactId>
  796. <version>2.1.7</version>
  797. <exclusions>
  798. <exclusion>
  799. <groupId>bouncycastle</groupId>
  800. <artifactId>bcprov-jdk14</artifactId>
  801. </exclusion>
  802. <exclusion>
  803. <groupId>org.bouncycastle</groupId>
  804. <artifactId>bctsp-jdk14</artifactId>
  805. </exclusion>
  806. </exclusions>
  807. </dependency>
  808. <dependency>
  809. <groupId>com.itextpdf</groupId>
  810. <artifactId>itextpdf</artifactId>
  811. <version>5.5.13</version>
  812. </dependency>
  813. <!-- highchart export-->
  814. <dependency>
  815. <groupId>org.apache.xmlgraphics</groupId>
  816. <artifactId>batik-codec</artifactId>
  817. <version>${batik-codec.version}</version>
  818. </dependency>
  819. <!-- highchart export -->
  820. <dependency>
  821. <groupId>com.github.abel533</groupId>
  822. <artifactId>ECharts</artifactId>
  823. <version>3.0.0.4</version>
  824. </dependency>
  825. <dependency>
  826. <groupId>com.google.guava</groupId>
  827. <artifactId>guava</artifactId>
  828. <version>16.0.1</version>
  829. </dependency>
  830. <dependency>
  831. <groupId>redis.clients</groupId>
  832. <artifactId>jedis</artifactId>
  833. <version>2.8.1</version>
  834. </dependency>
  835. <dependency>
  836. <groupId>org.activiti</groupId>
  837. <artifactId>activiti-engine</artifactId>
  838. <version>${activiti.version}</version>
  839. <exclusions>
  840. <exclusion>
  841. <groupId>org.mybatis</groupId>
  842. <artifactId>mybatis</artifactId>
  843. </exclusion>
  844. </exclusions>
  845. </dependency>
  846. <dependency>
  847. <groupId>org.activiti</groupId>
  848. <artifactId>activiti-spring</artifactId>
  849. <version>${activiti.version}</version>
  850. </dependency>
  851. <dependency>
  852. <groupId>org.activiti</groupId>
  853. <artifactId>activiti-bpmn-converter</artifactId>
  854. <version>${activiti.version}</version>
  855. </dependency>
  856. <dependency>
  857. <groupId>com.aliyun</groupId>
  858. <artifactId>aliyun-java-sdk-core</artifactId>
  859. <version>3.3.1</version>
  860. </dependency>
  861. <dependency>
  862. <groupId>com.aliyun.oss</groupId>
  863. <artifactId>aliyun-sdk-oss</artifactId>
  864. <version>2.8.2</version>
  865. </dependency>
  866. <dependency>
  867. <groupId>com.aliyun</groupId>
  868. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  869. <version>1.0.0</version>
  870. </dependency>
  871. <dependency>
  872. <groupId>io.netty</groupId>
  873. <artifactId>netty</artifactId>
  874. <version>3.10.5.Final</version>
  875. </dependency>
  876. <!-- openoffice start -->
  877. <dependency>
  878. <groupId>org.openoffice</groupId>
  879. <artifactId>juh</artifactId>
  880. <version>${openoffice.version}</version>
  881. </dependency>
  882. <dependency>
  883. <groupId>org.openoffice</groupId>
  884. <artifactId>unoil</artifactId>
  885. <version>${openoffice.version}</version>
  886. </dependency>
  887. <dependency>
  888. <groupId>org.openoffice</groupId>
  889. <artifactId>jurt</artifactId>
  890. <version>${openoffice.version}</version>
  891. </dependency>
  892. <!-- openoffice end -->
  893. <!-- jacob -->
  894. <dependency>
  895. <groupId>com.hynnet</groupId>
  896. <artifactId>jacob</artifactId>
  897. <version>${jacob.version}</version>
  898. </dependency>
  899. <dependency>
  900. <groupId>com.jayway.jsonpath</groupId>
  901. <artifactId>json-path</artifactId>
  902. <version>0.8.1</version>
  903. </dependency>
  904. <dependency>
  905. <groupId>com.ning</groupId>
  906. <artifactId>async-http-client</artifactId>
  907. <version>1.9.32</version>
  908. </dependency>
  909. <!-- JSON begin -->
  910. <dependency>
  911. <groupId>org.codehaus.jackson</groupId>
  912. <artifactId>jackson-mapper-asl</artifactId>
  913. <version>1.8.4</version>
  914. </dependency>
  915. <dependency>
  916. <groupId>net.sf.json-lib</groupId>
  917. <artifactId>json-lib</artifactId>
  918. <version>${json-lib.version}</version>
  919. <classifier>jdk15</classifier>
  920. </dependency>
  921. <dependency>
  922. <groupId>net.sf.ezmorph</groupId>
  923. <artifactId>ezmorph</artifactId>
  924. <version>1.0.3</version>
  925. </dependency>
  926. <dependency>
  927. <groupId>org.apache.geronimo.specs</groupId>
  928. <artifactId>geronimo-javamail_1.4_spec</artifactId>
  929. <version>1.6</version>
  930. </dependency>
  931. <dependency>
  932. <groupId>org.gavaghan</groupId>
  933. <artifactId>geodesy</artifactId>
  934. <version>1.1.3</version>
  935. </dependency>
  936. <!-- <dependency>-->
  937. <!-- <groupId>org.slf4j</groupId>-->
  938. <!-- <artifactId>jcl-over-slf4j</artifactId>-->
  939. <!-- <version>4.0.0</version>-->
  940. <!-- </dependency>-->
  941. <dependency>
  942. <groupId>org.jboss</groupId>
  943. <artifactId>jboss-vfs</artifactId>
  944. <version>3.1.0.Final</version>
  945. </dependency>
  946. <!-- java的OpenDucument文件转换器,它利用OpenOffice来进行转换工作-->
  947. <dependency>
  948. <groupId>org.artofsolving</groupId>
  949. <artifactId>jodconverter</artifactId>
  950. <version>${jodconverter.version}</version>
  951. </dependency>
  952. <dependency>
  953. <groupId>net.coobird</groupId>
  954. <artifactId>thumbnailator</artifactId>
  955. <version>0.4.14</version>
  956. </dependency>
  957. <!-- oracle 11g-->
  958. <dependency>
  959. <groupId>com.oracle</groupId>
  960. <artifactId>ojdbc14</artifactId>
  961. <version>${ojdbc14.version}</version>
  962. </dependency>
  963. <!-- 数据库相关依赖包 _end -->
  964. <dependency>
  965. <groupId>javax.servlet</groupId>
  966. <artifactId>jstl</artifactId>
  967. <version>1.2</version>
  968. </dependency>
  969. <dependency>
  970. <groupId>org.apache.xmlgraphics</groupId>
  971. <artifactId>fop</artifactId>
  972. <version>2.6</version>
  973. </dependency>
  974. <dependency>
  975. <groupId>aopalliance</groupId>
  976. <artifactId>aopalliance</artifactId>
  977. <version>1.0</version>
  978. </dependency>
  979. <dependency>
  980. <groupId>xpp3</groupId>
  981. <artifactId>xpp3</artifactId>
  982. <version>1.1.4c</version>
  983. </dependency>
  984. <dependency>
  985. <groupId>com.google.code.gson</groupId>
  986. <artifactId>gson</artifactId>
  987. <version>${gson.version}</version>
  988. </dependency>
  989. </dependencies>
  990. <build>
  991. <plugins>
  992. <plugin>
  993. <groupId>org.apache.maven.plugins</groupId>
  994. <artifactId>maven-compiler-plugin</artifactId>
  995. <version>3.8.0</version>
  996. <configuration>
  997. <source>1.8</source>
  998. <target>1.8</target>
  999. </configuration>
  1000. </plugin>
  1001. </plugins>
  1002. </build>
  1003. </project>