pom.xml 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037
  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. <groupId>com.izouma</groupId>
  7. <artifactId>awesome-admin</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>war</packaging>
  10. <name>awesome-admin</name>
  11. <url>http://www.izouma.com</url>
  12. <!-- 项目属性 -->
  13. <properties>
  14. <!-- other libs -->
  15. <lib.path>${basedir}/src/main/webapp/WEB-INF/lib</lib.path>
  16. <!-- main version setting -->
  17. <spring.version>4.3.5.RELEASE</spring.version>
  18. <validator.version>5.4.0.Final</validator.version>
  19. <mybatis.version>3.3.1</mybatis.version>
  20. <mybatis-spring.version>1.2.2</mybatis-spring.version>
  21. <druid.version>1.0.31</druid.version>
  22. <ehcache.version>2.6.11</ehcache.version>
  23. <ehcache-web.version>2.0.4</ehcache-web.version>
  24. <shiro.version>1.4.0</shiro.version>
  25. <sitemesh.version>2.4.2</sitemesh.version>
  26. <activiti.version>5.22.0</activiti.version>
  27. <!-- tools version setting -->
  28. <slf4j.version>1.7.25</slf4j.version>
  29. <log4j.version>1.2.17</log4j.version>
  30. <commons-io.version>2.4</commons-io.version>
  31. <commons-codec.version>1.9</commons-codec.version>
  32. <commons-fileupload.version>1.3.1</commons-fileupload.version>
  33. <commons-beanutils.version>1.9.1</commons-beanutils.version>
  34. <jackson.version>2.8.6</jackson.version>
  35. <fastjson.version>1.1.40</fastjson.version>
  36. <xstream.version>1.4.9</xstream.version>
  37. <dozer.version>5.5.1</dozer.version>
  38. <poi.version>3.9</poi.version>
  39. <freemarker.version>2.3.25-incubating</freemarker.version>
  40. <quartz.version>2.2.3</quartz.version>
  41. <ckfinder.version>2.3</ckfinder.version>
  42. <guava.version>20.0</guava.version>
  43. <commons-lang3.version>3.5</commons-lang3.version>
  44. <commons-text.version>1.3</commons-text.version>
  45. <commons-collections.version>4.1</commons-collections.version>
  46. <!-- jdbc driver setting -->
  47. <mysql.driver.version>5.1.30</mysql.driver.version>
  48. <sqlserver.driver.version>4.0.0</sqlserver.driver.version>
  49. <oracle.driver.version>10.2.0.4.0</oracle.driver.version>
  50. <mssql.driver.version>1.3.1</mssql.driver.version>
  51. <!-- environment setting -->
  52. <jdk.version>1.8</jdk.version>
  53. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  54. <downloadSources>true</downloadSources>
  55. </properties>
  56. <!-- 设定仓库 -->
  57. <!--<repositories>-->
  58. <!--<repository>-->
  59. <!--<id>central-repos</id>-->
  60. <!--<name>Central Repository</name>-->
  61. <!--<url>http://maven.aliyun.com/nexus/content/groups/public/</url>-->
  62. <!--<releases>-->
  63. <!--<enabled>true</enabled>-->
  64. <!--</releases>-->
  65. <!--<snapshots>-->
  66. <!--<enabled>false</enabled>-->
  67. <!--</snapshots>-->
  68. <!--</repository>-->
  69. <!--<repository>-->
  70. <!--<id>central-repos2</id>-->
  71. <!--<name>Central Repository 2</name>-->
  72. <!--<url>http://mvnrepo.code.taobao.org/nexus/content/repositories/snapshots/</url>-->
  73. <!--<releases>-->
  74. <!--<enabled>true</enabled>-->
  75. <!--</releases>-->
  76. <!--<snapshots>-->
  77. <!--<enabled>false</enabled>-->
  78. <!--</snapshots>-->
  79. <!--</repository>-->
  80. <!--<repository>-->
  81. <!--<id>springsource-repos</id>-->
  82. <!--<name>SpringSource Repository</name>-->
  83. <!--<url>http://mvnrepo.code.taobao.org/nexus/content/repositories/releases/</url>-->
  84. <!--<releases>-->
  85. <!--<enabled>true</enabled>-->
  86. <!--</releases>-->
  87. <!--<snapshots>-->
  88. <!--<enabled>false</enabled>-->
  89. <!--</snapshots>-->
  90. <!--</repository>-->
  91. <!---->
  92. <!--<repository>-->
  93. <!--<id>bitwalker.user-agent-utils.mvn.repo</id>-->
  94. <!--<url>https://nexus.jackpinetech.com/nexus/content/groups/public</url>-->
  95. <!--&lt;!&ndash; use snapshot version &ndash;&gt;-->
  96. <!--<snapshots>-->
  97. <!--<updatePolicy>always</updatePolicy>-->
  98. <!--</snapshots>-->
  99. <!--</repository>-->
  100. <!--</repositories>-->
  101. <build>
  102. <finalName>awesome-admin</finalName>
  103. <resources>
  104. <resource>
  105. <directory>src/main/java</directory>
  106. <filtering>true</filtering>
  107. <includes>
  108. <include>**/*.xml</include>
  109. <include>**/*.properties</include>
  110. </includes>
  111. </resource>
  112. <resource>
  113. <directory>src/main/resources</directory>
  114. </resource>
  115. </resources>
  116. <plugins>
  117. <plugin>
  118. <groupId>org.apache.maven.plugins</groupId>
  119. <artifactId>maven-compiler-plugin</artifactId>
  120. <configuration>
  121. <source>${jdk.version}</source>
  122. <target>${jdk.version}</target>
  123. <compilerArgs>
  124. <!--<arg>-Dfile.encoding=UTF-8</arg>-->
  125. </compilerArgs>
  126. </configuration>
  127. </plugin>
  128. <plugin>
  129. <groupId>org.apache.maven.plugins</groupId>
  130. <artifactId>maven-surefire-plugin</artifactId>
  131. <version>2.10</version>
  132. <configuration>
  133. <skip>true</skip>
  134. <testFailureIgnore>true</testFailureIgnore>
  135. </configuration>
  136. </plugin>
  137. </plugins>
  138. </build>
  139. <!-- 依赖项定义 -->
  140. <dependencies>
  141. <!-- SPRING begin -->
  142. <dependency>
  143. <groupId>org.springframework</groupId>
  144. <artifactId>spring-core</artifactId>
  145. <version>${spring.version}</version>
  146. <exclusions>
  147. <exclusion>
  148. <groupId>commons-logging</groupId>
  149. <artifactId>commons-logging</artifactId>
  150. </exclusion>
  151. </exclusions>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.springframework</groupId>
  155. <artifactId>spring-beans</artifactId>
  156. <version>${spring.version}</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.springframework</groupId>
  160. <artifactId>spring-context</artifactId>
  161. <version>${spring.version}</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.springframework</groupId>
  165. <artifactId>spring-context-support</artifactId>
  166. <version>${spring.version}</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.springframework</groupId>
  170. <artifactId>spring-aop</artifactId>
  171. <version>${spring.version}</version>
  172. <exclusions>
  173. <exclusion>
  174. <groupId>commons-logging</groupId>
  175. <artifactId>commons-logging</artifactId>
  176. </exclusion>
  177. </exclusions>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.springframework</groupId>
  181. <artifactId>spring-tx</artifactId>
  182. <version>${spring.version}</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.springframework</groupId>
  186. <artifactId>spring-expression</artifactId>
  187. <version>${spring.version}</version>
  188. </dependency>
  189. <!-- spring orm -->
  190. <dependency>
  191. <groupId>org.springframework</groupId>
  192. <artifactId>spring-orm</artifactId>
  193. <version>${spring.version}</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>org.springframework</groupId>
  197. <artifactId>spring-jdbc</artifactId>
  198. <version>${spring.version}</version>
  199. <exclusions>
  200. <exclusion>
  201. <groupId>c3p0</groupId>
  202. <artifactId>c3p0</artifactId>
  203. </exclusion>
  204. </exclusions>
  205. </dependency>
  206. <!-- spring websocket-->
  207. <dependency>
  208. <groupId>org.springframework</groupId>
  209. <artifactId>spring-websocket</artifactId>
  210. <version>${spring.version}</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.springframework</groupId>
  214. <artifactId>spring-messaging</artifactId>
  215. <version>${spring.version}</version>
  216. </dependency>
  217. <!-- bean validate -->
  218. <dependency>
  219. <groupId>org.hibernate</groupId>
  220. <artifactId>hibernate-validator</artifactId>
  221. <version>${validator.version}</version>
  222. </dependency>
  223. <!-- SPRING end -->
  224. <!-- AOP begin -->
  225. <dependency>
  226. <groupId>org.aspectj</groupId>
  227. <artifactId>aspectjrt</artifactId>
  228. <version>1.7.4</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.aspectj</groupId>
  232. <artifactId>aspectjweaver</artifactId>
  233. <version>1.7.4</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>cglib</groupId>
  237. <artifactId>cglib</artifactId>
  238. <version>3.1</version>
  239. </dependency>
  240. <!-- AOP end -->
  241. <!-- PERSISTENCE begin -->
  242. <!-- MyBatis -->
  243. <dependency>
  244. <groupId>org.mybatis</groupId>
  245. <artifactId>mybatis</artifactId>
  246. <version>${mybatis.version}</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>org.mybatis</groupId>
  250. <artifactId>mybatis-spring</artifactId>
  251. <version>${mybatis-spring.version}</version>
  252. </dependency>
  253. <!-- connection pool -->
  254. <dependency>
  255. <groupId>com.alibaba</groupId>
  256. <artifactId>druid</artifactId>
  257. <version>${druid.version}</version>
  258. </dependency>
  259. <!-- jdbc driver -->
  260. <dependency>
  261. <groupId>mysql</groupId>
  262. <artifactId>mysql-connector-java</artifactId>
  263. <version>${mysql.driver.version}</version>
  264. </dependency>
  265. <!--<dependency>-->
  266. <!--<groupId>com.microsoft.sqlserver</groupId>-->
  267. <!--<artifactId>sqljdbc4</artifactId>-->
  268. <!--<version>${sqlserver.driver.version}</version>-->
  269. <!--</dependency>-->
  270. <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/sqljdbc4 -->
  271. <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
  272. <dependency>
  273. <groupId>com.microsoft.sqlserver</groupId>
  274. <artifactId>mssql-jdbc</artifactId>
  275. <version>6.4.0.jre8</version>
  276. </dependency>
  277. <dependency>
  278. <groupId>com.mchange</groupId>
  279. <artifactId>c3p0</artifactId>
  280. <version>0.9.5.2</version>
  281. </dependency>
  282. <!-- WEB begin -->
  283. <dependency>
  284. <groupId>org.springframework</groupId>
  285. <artifactId>spring-web</artifactId>
  286. <version>${spring.version}</version>
  287. </dependency>
  288. <dependency>
  289. <groupId>org.springframework</groupId>
  290. <artifactId>spring-webmvc</artifactId>
  291. <version>${spring.version}</version>
  292. </dependency>
  293. <dependency>
  294. <groupId>org.springframework</groupId>
  295. <artifactId>spring-oxm</artifactId>
  296. <version>${spring.version}</version>
  297. </dependency>
  298. <dependency>
  299. <groupId>opensymphony</groupId>
  300. <artifactId>sitemesh</artifactId>
  301. <version>${sitemesh.version}</version>
  302. </dependency>
  303. <!--<dependency>-->
  304. <!--<groupId>taglibs</groupId>-->
  305. <!--<artifactId>standard</artifactId>-->
  306. <!--<version>1.1.2</version>-->
  307. <!--<type>jar</type>-->
  308. <!--</dependency>-->
  309. <dependency>
  310. <groupId>javax</groupId>
  311. <artifactId>javaee-api</artifactId>
  312. <version>7.0</version>
  313. <scope>provided</scope>
  314. </dependency>
  315. <dependency>
  316. <groupId>javax.servlet</groupId>
  317. <artifactId>jstl</artifactId>
  318. <version>1.2</version>
  319. <type>jar</type>
  320. </dependency>
  321. <dependency>
  322. <groupId>javax.servlet</groupId>
  323. <artifactId>servlet-api</artifactId>
  324. <version>2.5</version>
  325. <scope>provided</scope>
  326. </dependency>
  327. <dependency>
  328. <groupId>javax.servlet.jsp</groupId>
  329. <artifactId>jsp-api</artifactId>
  330. <version>2.1</version>
  331. <scope>provided</scope>
  332. </dependency>
  333. <!-- <dependency>
  334. <groupId>javax.servlet</groupId>
  335. <artifactId>javax.servlet-api</artifactId>
  336. <version>3.0.1</version>
  337. <scope>provided</scope>
  338. </dependency>
  339. <dependency>
  340. <groupId>javax.servlet.jsp</groupId>
  341. <artifactId>jsp-api</artifactId>
  342. <version>2.2</version>
  343. <scope>provided</scope>
  344. </dependency>-->
  345. <dependency>
  346. <groupId>net.sf.ehcache</groupId>
  347. <artifactId>ehcache-core</artifactId>
  348. <version>${ehcache.version}</version>
  349. </dependency>
  350. <dependency>
  351. <groupId>org.jgroups</groupId>
  352. <artifactId>jgroups</artifactId>
  353. <version>3.6.6.Final</version>
  354. </dependency>
  355. <dependency>
  356. <groupId>redis.clients</groupId>
  357. <artifactId>jedis</artifactId>
  358. <version>2.8.0</version>
  359. </dependency>
  360. <dependency>
  361. <groupId>org.apache.commons</groupId>
  362. <artifactId>commons-pool2</artifactId>
  363. <version>2.4.2</version>
  364. </dependency>
  365. <dependency>
  366. <groupId>de.ruedigermoeller</groupId>
  367. <artifactId>fst</artifactId>
  368. <version>2.42</version>
  369. </dependency>
  370. <dependency>
  371. <groupId>com.esotericsoftware</groupId>
  372. <artifactId>kryo-shaded</artifactId>
  373. <version>3.0.0</version>
  374. </dependency>
  375. <!-- CACHE end -->
  376. <!-- SECURITY begin -->
  377. <dependency>
  378. <groupId>org.apache.shiro</groupId>
  379. <artifactId>shiro-core</artifactId>
  380. <version>${shiro.version}</version>
  381. </dependency>
  382. <dependency>
  383. <groupId>org.apache.shiro</groupId>
  384. <artifactId>shiro-spring</artifactId>
  385. <version>${shiro.version}</version>
  386. </dependency>
  387. <dependency>
  388. <groupId>org.apache.shiro</groupId>
  389. <artifactId>shiro-cas</artifactId>
  390. <version>${shiro.version}</version>
  391. <exclusions>
  392. <exclusion>
  393. <groupId>commons-logging</groupId>
  394. <artifactId>commons-logging</artifactId>
  395. </exclusion>
  396. </exclusions>
  397. </dependency>
  398. <dependency>
  399. <groupId>org.apache.shiro</groupId>
  400. <artifactId>shiro-web</artifactId>
  401. <version>${shiro.version}</version>
  402. </dependency>
  403. <dependency>
  404. <groupId>org.apache.shiro</groupId>
  405. <artifactId>shiro-ehcache</artifactId>
  406. <version>${shiro.version}</version>
  407. </dependency>
  408. <!-- SECURITY end -->
  409. <!-- Activiti -->
  410. <dependency>
  411. <groupId>org.activiti</groupId>
  412. <artifactId>activiti-engine</artifactId>
  413. <version>${activiti.version}</version>
  414. </dependency>
  415. <dependency>
  416. <groupId>org.activiti</groupId>
  417. <artifactId>activiti-spring</artifactId>
  418. <version>${activiti.version}</version>
  419. </dependency>
  420. <dependency>
  421. <groupId>org.activiti</groupId>
  422. <artifactId>activiti-explorer</artifactId>
  423. <version>${activiti.version}</version>
  424. <exclusions>
  425. <exclusion>
  426. <artifactId>vaadin</artifactId>
  427. <groupId>com.vaadin</groupId>
  428. </exclusion>
  429. <exclusion>
  430. <artifactId>dcharts-widget</artifactId>
  431. <groupId>org.vaadin.addons</groupId>
  432. </exclusion>
  433. <exclusion>
  434. <artifactId>activiti-simple-workflow</artifactId>
  435. <groupId>org.activiti</groupId>
  436. </exclusion>
  437. </exclusions>
  438. </dependency>
  439. <dependency>
  440. <groupId>org.activiti</groupId>
  441. <artifactId>activiti-modeler</artifactId>
  442. <version>${activiti.version}</version>
  443. </dependency>
  444. <dependency>
  445. <groupId>org.activiti</groupId>
  446. <artifactId>activiti-rest</artifactId>
  447. <version>${activiti.version}</version>
  448. </dependency>
  449. <dependency>
  450. <groupId>org.activiti</groupId>
  451. <artifactId>activiti-diagram-rest</artifactId>
  452. <version>${activiti.version}</version>
  453. </dependency>
  454. <dependency>
  455. <groupId>org.activiti</groupId>
  456. <artifactId>activiti-json-converter</artifactId>
  457. <version>${activiti.version}</version>
  458. </dependency>
  459. <dependency>
  460. <groupId>org.activiti</groupId>
  461. <artifactId>activiti-cxf</artifactId>
  462. <version>${activiti.version}</version>
  463. </dependency>
  464. <dependency>
  465. <groupId>xerces</groupId>
  466. <artifactId>xercesImpl</artifactId>
  467. <version>2.11.0</version>
  468. </dependency>
  469. <dependency>
  470. <groupId>org.apache.cxf</groupId>
  471. <artifactId>cxf-api</artifactId>
  472. <version>2.7.6</version>
  473. </dependency>
  474. <dependency>
  475. <groupId>org.apache.cxf</groupId>
  476. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  477. <version>2.7.6</version>
  478. </dependency>
  479. <dependency>
  480. <groupId>org.apache.cxf</groupId>
  481. <artifactId>cxf-rt-transports-http-jetty</artifactId>
  482. <version>2.7.6</version>
  483. <scope>test</scope>
  484. </dependency>
  485. <dependency>
  486. <groupId>org.apache.cxf</groupId>
  487. <artifactId>cxf-rt-transports-http</artifactId>
  488. <version>2.7.6</version>
  489. </dependency>
  490. <dependency>
  491. <groupId>com.sun.xml.bind</groupId>
  492. <artifactId>jaxb-impl</artifactId>
  493. <version>2.2.11</version>
  494. </dependency>
  495. <!-- LOGGING begin -->
  496. <dependency>
  497. <groupId>org.slf4j</groupId>
  498. <artifactId>slf4j-api</artifactId>
  499. <version>${slf4j.version}</version>
  500. </dependency>
  501. <dependency>
  502. <groupId>org.slf4j</groupId>
  503. <artifactId>slf4j-log4j12</artifactId>
  504. <version>${slf4j.version}</version>
  505. </dependency>
  506. <!-- common-logging 实际调用slf4j -->
  507. <dependency>
  508. <groupId>org.slf4j</groupId>
  509. <artifactId>jcl-over-slf4j</artifactId>
  510. <version>${slf4j.version}</version>
  511. </dependency>
  512. <!-- java.util.logging 实际调用slf4j -->
  513. <dependency>
  514. <groupId>org.slf4j</groupId>
  515. <artifactId>jul-to-slf4j</artifactId>
  516. <version>${slf4j.version}</version>
  517. </dependency>
  518. <dependency>
  519. <groupId>log4j</groupId>
  520. <artifactId>log4j</artifactId>
  521. <version>${log4j.version}</version>
  522. </dependency>
  523. <!-- LOGGING end -->
  524. <!-- GENERAL UTILS begin -->
  525. <dependency>
  526. <groupId>commons-io</groupId>
  527. <artifactId>commons-io</artifactId>
  528. <version>${commons-io.version}</version>
  529. </dependency>
  530. <dependency>
  531. <groupId>commons-codec</groupId>
  532. <artifactId>commons-codec</artifactId>
  533. <version>${commons-codec.version}</version>
  534. </dependency>
  535. <dependency>
  536. <groupId>commons-fileupload</groupId>
  537. <artifactId>commons-fileupload</artifactId>
  538. <version>${commons-fileupload.version}</version>
  539. </dependency>
  540. <dependency>
  541. <groupId>commons-beanutils</groupId>
  542. <artifactId>commons-beanutils</artifactId>
  543. <version>${commons-beanutils.version}</version>
  544. <exclusions>
  545. <exclusion>
  546. <groupId>commons-logging</groupId>
  547. <artifactId>commons-logging</artifactId>
  548. </exclusion>
  549. </exclusions>
  550. </dependency>
  551. <dependency>
  552. <groupId>org.apache.commons</groupId>
  553. <artifactId>commons-text</artifactId>
  554. <version>${commons-text.version}</version>
  555. </dependency>
  556. <dependency>
  557. <groupId>org.apache.commons</groupId>
  558. <artifactId>commons-collections4</artifactId>
  559. <version>${commons-collections.version}</version>
  560. </dependency>
  561. <!-- jackson json -->
  562. <dependency>
  563. <groupId>com.fasterxml.jackson.core</groupId>
  564. <artifactId>jackson-core</artifactId>
  565. <version>${jackson.version}</version>
  566. </dependency>
  567. <dependency>
  568. <groupId>com.fasterxml.jackson.core</groupId>
  569. <artifactId>jackson-databind</artifactId>
  570. <version>${jackson.version}</version>
  571. </dependency>
  572. <dependency>
  573. <groupId>com.fasterxml.jackson.core</groupId>
  574. <artifactId>jackson-annotations</artifactId>
  575. <version>${jackson.version}</version>
  576. </dependency>
  577. <dependency>
  578. <groupId>com.fasterxml.jackson.module</groupId>
  579. <artifactId>jackson-module-jaxb-annotations</artifactId>
  580. <version>${jackson.version}</version>
  581. </dependency>
  582. <!-- fastjson json-->
  583. <dependency>
  584. <groupId>com.alibaba</groupId>
  585. <artifactId>fastjson</artifactId>
  586. <version>${fastjson.version}</version>
  587. </dependency>
  588. <!-- xstream xml -->
  589. <dependency>
  590. <groupId>com.thoughtworks.xstream</groupId>
  591. <artifactId>xstream</artifactId>
  592. <version>${xstream.version}</version>
  593. </dependency>
  594. <!-- pojo copy -->
  595. <dependency>
  596. <groupId>net.sf.dozer</groupId>
  597. <artifactId>dozer</artifactId>
  598. <version>${dozer.version}</version>
  599. </dependency>
  600. <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j -->
  601. <dependency>
  602. <groupId>com.belerweb</groupId>
  603. <artifactId>pinyin4j</artifactId>
  604. <version>2.5.1</version>
  605. </dependency>
  606. <!-- template engine -->
  607. <dependency>
  608. <groupId>org.freemarker</groupId>
  609. <artifactId>freemarker</artifactId>
  610. <version>${freemarker.version}</version>
  611. </dependency>
  612. <dependency>
  613. <groupId>com.ibeetl</groupId>
  614. <artifactId>beetl</artifactId>
  615. <version>2.7.5</version>
  616. </dependency>
  617. <!-- email -->
  618. <dependency>
  619. <groupId>javax.mail</groupId>
  620. <artifactId>mail</artifactId>
  621. <version>1.4.7</version>
  622. </dependency>
  623. <dependency>
  624. <groupId>javax.activation</groupId>
  625. <artifactId>activation</artifactId>
  626. <version>1.1.1</version>
  627. </dependency>
  628. <!-- poi office -->
  629. <dependency>
  630. <groupId>org.apache.poi</groupId>
  631. <artifactId>poi</artifactId>
  632. <version>${poi.version}</version>
  633. </dependency>
  634. <dependency>
  635. <groupId>org.apache.poi</groupId>
  636. <artifactId>poi-ooxml</artifactId>
  637. <version>${poi.version}</version>
  638. </dependency>
  639. <dependency>
  640. <groupId>org.apache.poi</groupId>
  641. <artifactId>poi-ooxml-schemas</artifactId>
  642. <version>${poi.version}</version>
  643. </dependency>
  644. <!-- image util -->
  645. <dependency>
  646. <groupId>com.drewnoakes</groupId>
  647. <artifactId>metadata-extractor</artifactId>
  648. <version>2.10.1</version>
  649. </dependency>
  650. <!-- 条形码、二维码生成 -->
  651. <dependency>
  652. <groupId>com.google.zxing</groupId>
  653. <artifactId>core</artifactId>
  654. <version>3.3.0</version>
  655. </dependency>
  656. <dependency>
  657. <groupId>batik</groupId>
  658. <artifactId>batik-util</artifactId>
  659. <version>1.6-1</version>
  660. </dependency>
  661. <!-- quartz -->
  662. <dependency>
  663. <groupId>org.quartz-scheduler</groupId>
  664. <artifactId>quartz</artifactId>
  665. <version>${quartz.version}</version>
  666. <exclusions>
  667. <exclusion>
  668. <groupId>c3p0</groupId>
  669. <artifactId>c3p0</artifactId>
  670. </exclusion>
  671. </exclusions>
  672. </dependency>
  673. <dependency>
  674. <groupId>org.quartz-scheduler</groupId>
  675. <artifactId>quartz-jobs</artifactId>
  676. <version>${quartz.version}</version>
  677. </dependency>
  678. <!--&lt;!&ndash; 中文分词 &ndash;&gt;-->
  679. <!--<dependency>-->
  680. <!--<groupId>org.wltea</groupId>-->
  681. <!--<artifactId>analyzer</artifactId>-->
  682. <!--<version>2012_u6</version>-->
  683. <!--</dependency>-->
  684. <!-- GENERAL UTILS end -->
  685. <!-- sigar -->
  686. <!-- https://mvnrepository.com/artifact/org.fusesource/sigar -->
  687. <dependency>
  688. <groupId>org.fusesource</groupId>
  689. <artifactId>sigar</artifactId>
  690. <version>1.6.4</version>
  691. </dependency>
  692. <!-- CKFinder begin -->
  693. <dependency>
  694. <groupId>net.coobird</groupId>
  695. <artifactId>thumbnailator</artifactId>
  696. <version>0.4.8</version>
  697. </dependency>
  698. <!--<dependency>-->
  699. <!--<groupId>com.ckfinder</groupId>-->
  700. <!--<artifactId>apache-ant-zip</artifactId>-->
  701. <!--<version>${ckfinder.version}</version>-->
  702. <!--</dependency>-->
  703. <!--<dependency>-->
  704. <!--<groupId>com.ckfinder</groupId>-->
  705. <!--<artifactId>ckfinder</artifactId>-->
  706. <!--<version>${ckfinder.version}</version>-->
  707. <!--</dependency>-->
  708. <!--<dependency>-->
  709. <!--<groupId>com.ckfinder</groupId>-->
  710. <!--<artifactId>ckfinderplugin-fileeditor</artifactId>-->
  711. <!--<version>${ckfinder.version}</version>-->
  712. <!--</dependency>-->
  713. <!--<dependency>-->
  714. <!--<groupId>com.ckfinder</groupId>-->
  715. <!--<artifactId>ckfinderplugin-imageresize</artifactId>-->
  716. <!--<version>${ckfinder.version}</version>-->
  717. <!--</dependency>-->
  718. <!-- CKFinder end -->
  719. <!-- Echarts图表依赖包开始 -->
  720. <!-- https://mvnrepository.com/artifact/com.github.abel533/ECharts -->
  721. <dependency>
  722. <groupId>com.github.abel533</groupId>
  723. <artifactId>ECharts</artifactId>
  724. <version>3.0.0.2</version>
  725. </dependency>
  726. <dependency>
  727. <groupId>com.google.code.gson</groupId>
  728. <artifactId>gson</artifactId>
  729. <version>2.6.2</version>
  730. </dependency>
  731. <!-- Echarts图表依赖包结束 -->
  732. <!-- TEST begin -->
  733. <dependency>
  734. <groupId>junit</groupId>
  735. <artifactId>junit</artifactId>
  736. <version>4.12</version>
  737. </dependency>
  738. <dependency>
  739. <groupId>org.springframework</groupId>
  740. <artifactId>spring-test</artifactId>
  741. <version>${spring.version}</version>
  742. </dependency>
  743. <!-- TEST end -->
  744. <dependency>
  745. <groupId>eu.bitwalker</groupId>
  746. <artifactId>UserAgentUtils</artifactId>
  747. <version>1.20</version>
  748. </dependency>
  749. <!--httpcore -->
  750. <dependency>
  751. <groupId>org.apache.httpcomponents</groupId>
  752. <artifactId>httpcore</artifactId>
  753. <version>4.4.4</version>
  754. </dependency>
  755. <!-- swagger-springmvc -->
  756. <dependency>
  757. <groupId>io.springfox</groupId>
  758. <artifactId>springfox-swagger2</artifactId>
  759. <version>2.7.0</version>
  760. </dependency>
  761. <dependency>
  762. <groupId>io.springfox</groupId>
  763. <artifactId>springfox-swagger-ui</artifactId>
  764. <version>2.7.0</version>
  765. </dependency>
  766. <!-- swagger-springmvc -->
  767. <!--httpclient -->
  768. <dependency>
  769. <groupId>org.apache.httpcomponents</groupId>
  770. <artifactId>httpclient</artifactId>
  771. <version>4.5.2</version>
  772. </dependency>
  773. <!-- UTILS begin -->
  774. <dependency>
  775. <groupId>com.google.guava</groupId>
  776. <artifactId>guava</artifactId>
  777. <version>${guava.version}</version>
  778. </dependency>
  779. <dependency>
  780. <groupId>org.apache.commons</groupId>
  781. <artifactId>commons-lang3</artifactId>
  782. <version>${commons-lang3.version}</version>
  783. </dependency>
  784. <!-- UTILS end -->
  785. <dependency>
  786. <groupId>com.aliyun</groupId>
  787. <artifactId>aliyun-java-sdk-core</artifactId>
  788. <version>4.0.6</version>
  789. </dependency>
  790. <dependency>
  791. <groupId>com.aliyun</groupId>
  792. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  793. <version>1.1.0</version>
  794. </dependency>
  795. <dependency>
  796. <groupId>com.aliyun</groupId>
  797. <artifactId>aliyun-java-sdk-vod</artifactId>
  798. <version>2.2.0</version>
  799. </dependency>
  800. <dependency>
  801. <groupId>com.aliyun.oss</groupId>
  802. <artifactId>aliyun-sdk-oss</artifactId>
  803. <version>2.0.6</version>
  804. </dependency>
  805. <dependency>
  806. <groupId>aopalliance</groupId>
  807. <artifactId>aopalliance</artifactId>
  808. <version>1.0</version>
  809. </dependency>
  810. <dependency>
  811. <groupId>dom4j</groupId>
  812. <artifactId>dom4j</artifactId>
  813. <version>1.6.1</version>
  814. </dependency>
  815. <dependency>
  816. <groupId>net.sf.ezmorph</groupId>
  817. <artifactId>ezmorph</artifactId>
  818. <version>1.0.6</version>
  819. </dependency>
  820. <dependency>
  821. <groupId>org.jboss.logging</groupId>
  822. <artifactId>jboss-logging</artifactId>
  823. <version>3.3.0.Final</version>
  824. </dependency>
  825. <dependency>
  826. <groupId>org.jboss</groupId>
  827. <artifactId>jboss-vfs</artifactId>
  828. <version>3.2.12.Final</version>
  829. </dependency>
  830. <dependency>
  831. <groupId>org.jdom</groupId>
  832. <artifactId>jdom</artifactId>
  833. <version>1.1</version>
  834. </dependency>
  835. <dependency>
  836. <groupId>org.codehaus.jettison</groupId>
  837. <artifactId>jettison</artifactId>
  838. <version>1.1</version>
  839. </dependency>
  840. <dependency>
  841. <groupId>net.sf.json-lib</groupId>
  842. <artifactId>json-lib</artifactId>
  843. <classifier>jdk15</classifier>
  844. <version>2.4</version>
  845. </dependency>
  846. <dependency>
  847. <groupId>org.json</groupId>
  848. <artifactId>json</artifactId>
  849. <version>20160810</version>
  850. </dependency>
  851. <dependency>
  852. <groupId>com.drewnoakes</groupId>
  853. <artifactId>metadata-extractor</artifactId>
  854. <version>2.10.1</version>
  855. </dependency>
  856. <dependency>
  857. <groupId>net.coobird</groupId>
  858. <artifactId>thumbnailator</artifactId>
  859. <version>0.4.8</version>
  860. </dependency>
  861. <dependency>
  862. <groupId>com.adobe.xmp</groupId>
  863. <artifactId>xmpcore</artifactId>
  864. <version>5.1.3</version>
  865. </dependency>
  866. <dependency>
  867. <groupId>xpp3</groupId>
  868. <artifactId>xpp3_min</artifactId>
  869. <version>1.1.4c</version>
  870. </dependency>
  871. <!--<dependency>-->
  872. <!--<groupId>org.apache.velocity</groupId>-->
  873. <!--<artifactId>velocity-engine-core</artifactId>-->
  874. <!--<version>2.0</version>-->
  875. <!--</dependency>-->
  876. <!-- https://mvnrepository.com/artifact/org.apache.velocity/velocity -->
  877. <dependency>
  878. <groupId>org.apache.velocity</groupId>
  879. <artifactId>velocity</artifactId>
  880. <version>1.7</version>
  881. </dependency>
  882. <dependency>
  883. <groupId>org.apache.velocity</groupId>
  884. <artifactId>velocity-tools</artifactId>
  885. <version>2.0</version>
  886. </dependency>
  887. <dependency>
  888. <groupId>com.fasterxml.uuid</groupId>
  889. <artifactId>java-uuid-generator</artifactId>
  890. <version>3.1.3</version>
  891. </dependency>
  892. <!--<dependency>-->
  893. <!--<groupId>com.baidu</groupId>-->
  894. <!--<artifactId>ueditor</artifactId>-->
  895. <!--<version>1.1.2</version>-->
  896. <!--<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/ueditor-1.1.2.jar</systemPath>-->
  897. <!--</dependency>-->
  898. <dependency>
  899. <groupId>io.jsonwebtoken</groupId>
  900. <artifactId>jjwt-api</artifactId>
  901. <version>0.10.1</version>
  902. </dependency>
  903. <dependency>
  904. <groupId>io.jsonwebtoken</groupId>
  905. <artifactId>jjwt-impl</artifactId>
  906. <version>0.10.1</version>
  907. <scope>runtime</scope>
  908. </dependency>
  909. <dependency>
  910. <groupId>io.jsonwebtoken</groupId>
  911. <artifactId>jjwt-jackson</artifactId>
  912. <version>0.10.1</version>
  913. <scope>runtime</scope>
  914. </dependency>
  915. <dependency>
  916. <groupId>com.alipay.sdk</groupId>
  917. <artifactId>alipay-sdk-java</artifactId>
  918. <version>3.3.49.ALL</version>
  919. </dependency>
  920. <dependency>
  921. <groupId>net.java.dev.jna</groupId>
  922. <artifactId>jna</artifactId>
  923. <version>4.1.0</version>
  924. </dependency>
  925. <dependency>
  926. <groupId>cn.jpush.api</groupId>
  927. <artifactId>jpush-client</artifactId>
  928. <version>3.3.10</version>
  929. </dependency>
  930. <dependency>
  931. <groupId>org.bytedeco</groupId>
  932. <artifactId>javacv-platform</artifactId>
  933. <version>1.4.4</version>
  934. </dependency>
  935. <dependency>
  936. <groupId>org.bytedeco.javacpp-presets</groupId>
  937. <artifactId>opencv-platform</artifactId>
  938. <version>4.0.1-1.4.4</version>
  939. </dependency>
  940. <dependency>
  941. <groupId>org.bytedeco.javacpp-presets</groupId>
  942. <artifactId>ffmpeg-platform</artifactId>
  943. <version>4.1-1.4.4</version>
  944. </dependency>
  945. <dependency>
  946. <groupId>org.bytedeco.javacpp-presets</groupId>
  947. <artifactId>tesseract-platform</artifactId>
  948. <version>4.0.0-1.4.4</version>
  949. </dependency>
  950. <dependency>
  951. <groupId>org.bytedeco.javacpp-presets</groupId>
  952. <artifactId>leptonica-platform</artifactId>
  953. <version>1.77.0-1.4.4</version>
  954. </dependency>
  955. </dependencies>
  956. </project>