1
0

pom.xml 38 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097
  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>6.0.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</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. </configuration>
  124. </plugin>
  125. <plugin>
  126. <groupId>org.apache.maven.plugins</groupId>
  127. <artifactId>maven-surefire-plugin</artifactId>
  128. <version>2.10</version>
  129. <configuration>
  130. <skip>true</skip>
  131. <testFailureIgnore>true</testFailureIgnore>
  132. </configuration>
  133. </plugin>
  134. </plugins>
  135. </build>
  136. <!-- 依赖项定义 -->
  137. <dependencies>
  138. <!-- SPRING begin -->
  139. <dependency>
  140. <groupId>org.springframework</groupId>
  141. <artifactId>spring-core</artifactId>
  142. <version>${spring.version}</version>
  143. <exclusions>
  144. <exclusion>
  145. <groupId>commons-logging</groupId>
  146. <artifactId>commons-logging</artifactId>
  147. </exclusion>
  148. </exclusions>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.springframework</groupId>
  152. <artifactId>spring-beans</artifactId>
  153. <version>${spring.version}</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.springframework</groupId>
  157. <artifactId>spring-context</artifactId>
  158. <version>${spring.version}</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.springframework</groupId>
  162. <artifactId>spring-context-support</artifactId>
  163. <version>${spring.version}</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.springframework</groupId>
  167. <artifactId>spring-aop</artifactId>
  168. <version>${spring.version}</version>
  169. <exclusions>
  170. <exclusion>
  171. <groupId>commons-logging</groupId>
  172. <artifactId>commons-logging</artifactId>
  173. </exclusion>
  174. </exclusions>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.springframework</groupId>
  178. <artifactId>spring-tx</artifactId>
  179. <version>${spring.version}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.springframework</groupId>
  183. <artifactId>spring-expression</artifactId>
  184. <version>${spring.version}</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.springframework</groupId>
  188. <artifactId>spring-test</artifactId>
  189. <version>${spring.version}</version>
  190. <scope>test</scope>
  191. </dependency>
  192. <!-- spring orm -->
  193. <dependency>
  194. <groupId>org.springframework</groupId>
  195. <artifactId>spring-orm</artifactId>
  196. <version>${spring.version}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.springframework</groupId>
  200. <artifactId>spring-jdbc</artifactId>
  201. <version>${spring.version}</version>
  202. </dependency>
  203. <!-- spring websocket-->
  204. <dependency>
  205. <groupId>org.springframework</groupId>
  206. <artifactId>spring-websocket</artifactId>
  207. <version>${spring.version}</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.springframework</groupId>
  211. <artifactId>spring-messaging</artifactId>
  212. <version>${spring.version}</version>
  213. </dependency>
  214. <!-- bean validate -->
  215. <dependency>
  216. <groupId>org.hibernate</groupId>
  217. <artifactId>hibernate-validator</artifactId>
  218. <version>${validator.version}</version>
  219. </dependency>
  220. <!-- SPRING end -->
  221. <!-- AOP begin -->
  222. <dependency>
  223. <groupId>org.aspectj</groupId>
  224. <artifactId>aspectjrt</artifactId>
  225. <version>1.7.4</version>
  226. </dependency>
  227. <dependency>
  228. <groupId>org.aspectj</groupId>
  229. <artifactId>aspectjweaver</artifactId>
  230. <version>1.7.4</version>
  231. </dependency>
  232. <dependency>
  233. <groupId>cglib</groupId>
  234. <artifactId>cglib</artifactId>
  235. <version>3.1</version>
  236. </dependency>
  237. <!-- AOP end -->
  238. <!-- PERSISTENCE begin -->
  239. <!-- MyBatis -->
  240. <dependency>
  241. <groupId>org.mybatis</groupId>
  242. <artifactId>mybatis</artifactId>
  243. <version>${mybatis.version}</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>org.mybatis</groupId>
  247. <artifactId>mybatis-spring</artifactId>
  248. <version>${mybatis-spring.version}</version>
  249. </dependency>
  250. <!-- connection pool -->
  251. <dependency>
  252. <groupId>com.alibaba</groupId>
  253. <artifactId>druid</artifactId>
  254. <version>${druid.version}</version>
  255. </dependency>
  256. <!-- jdbc driver -->
  257. <dependency>
  258. <groupId>mysql</groupId>
  259. <artifactId>mysql-connector-java</artifactId>
  260. <version>${mysql.driver.version}</version>
  261. </dependency>
  262. <!--<dependency>-->
  263. <!--<groupId>com.microsoft.sqlserver</groupId>-->
  264. <!--<artifactId>sqljdbc4</artifactId>-->
  265. <!--<version>${sqlserver.driver.version}</version>-->
  266. <!--</dependency>-->
  267. <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/sqljdbc4 -->
  268. <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
  269. <dependency>
  270. <groupId>com.microsoft.sqlserver</groupId>
  271. <artifactId>mssql-jdbc</artifactId>
  272. <version>6.4.0.jre8</version>
  273. <scope>test</scope>
  274. </dependency>
  275. <dependency>
  276. <groupId>c3p0</groupId>
  277. <artifactId>c3p0</artifactId>
  278. <version>0.9.1.1</version>
  279. </dependency>
  280. <!-- WEB begin -->
  281. <dependency>
  282. <groupId>org.springframework</groupId>
  283. <artifactId>spring-web</artifactId>
  284. <version>${spring.version}</version>
  285. </dependency>
  286. <dependency>
  287. <groupId>org.springframework</groupId>
  288. <artifactId>spring-webmvc</artifactId>
  289. <version>${spring.version}</version>
  290. </dependency>
  291. <dependency>
  292. <groupId>org.springframework</groupId>
  293. <artifactId>spring-oxm</artifactId>
  294. <version>${spring.version}</version>
  295. </dependency>
  296. <dependency>
  297. <groupId>opensymphony</groupId>
  298. <artifactId>sitemesh</artifactId>
  299. <version>${sitemesh.version}</version>
  300. </dependency>
  301. <!--<dependency>-->
  302. <!--<groupId>taglibs</groupId>-->
  303. <!--<artifactId>standard</artifactId>-->
  304. <!--<version>1.1.2</version>-->
  305. <!--<type>jar</type>-->
  306. <!--</dependency>-->
  307. <dependency>
  308. <groupId>javax</groupId>
  309. <artifactId>javaee-api</artifactId>
  310. <version>7.0</version>
  311. <scope>provided</scope>
  312. </dependency>
  313. <dependency>
  314. <groupId>javax.servlet</groupId>
  315. <artifactId>jstl</artifactId>
  316. <version>1.2</version>
  317. <type>jar</type>
  318. </dependency>
  319. <dependency>
  320. <groupId>javax.servlet</groupId>
  321. <artifactId>servlet-api</artifactId>
  322. <version>2.5</version>
  323. <scope>provided</scope>
  324. </dependency>
  325. <dependency>
  326. <groupId>javax.servlet.jsp</groupId>
  327. <artifactId>jsp-api</artifactId>
  328. <version>2.1</version>
  329. <scope>provided</scope>
  330. </dependency>
  331. <!-- <dependency>
  332. <groupId>javax.servlet</groupId>
  333. <artifactId>javax.servlet-api</artifactId>
  334. <version>3.0.1</version>
  335. <scope>provided</scope>
  336. </dependency>
  337. <dependency>
  338. <groupId>javax.servlet.jsp</groupId>
  339. <artifactId>jsp-api</artifactId>
  340. <version>2.2</version>
  341. <scope>provided</scope>
  342. </dependency>-->
  343. <dependency>
  344. <groupId>net.sf.ehcache</groupId>
  345. <artifactId>ehcache-core</artifactId>
  346. <version>${ehcache.version}</version>
  347. </dependency>
  348. <dependency>
  349. <groupId>org.jgroups</groupId>
  350. <artifactId>jgroups</artifactId>
  351. <version>3.6.6.Final</version>
  352. </dependency>
  353. <dependency>
  354. <groupId>redis.clients</groupId>
  355. <artifactId>jedis</artifactId>
  356. <version>2.8.0</version>
  357. </dependency>
  358. <dependency>
  359. <groupId>org.apache.commons</groupId>
  360. <artifactId>commons-pool2</artifactId>
  361. <version>2.4.2</version>
  362. </dependency>
  363. <dependency>
  364. <groupId>de.ruedigermoeller</groupId>
  365. <artifactId>fst</artifactId>
  366. <version>2.42</version>
  367. </dependency>
  368. <dependency>
  369. <groupId>com.esotericsoftware</groupId>
  370. <artifactId>kryo-shaded</artifactId>
  371. <version>3.0.0</version>
  372. </dependency>
  373. <!-- CACHE end -->
  374. <!-- SECURITY begin -->
  375. <dependency>
  376. <groupId>org.apache.shiro</groupId>
  377. <artifactId>shiro-core</artifactId>
  378. <version>${shiro.version}</version>
  379. </dependency>
  380. <dependency>
  381. <groupId>org.apache.shiro</groupId>
  382. <artifactId>shiro-spring</artifactId>
  383. <version>${shiro.version}</version>
  384. </dependency>
  385. <dependency>
  386. <groupId>org.apache.shiro</groupId>
  387. <artifactId>shiro-cas</artifactId>
  388. <version>${shiro.version}</version>
  389. <exclusions>
  390. <exclusion>
  391. <groupId>commons-logging</groupId>
  392. <artifactId>commons-logging</artifactId>
  393. </exclusion>
  394. </exclusions>
  395. </dependency>
  396. <dependency>
  397. <groupId>org.apache.shiro</groupId>
  398. <artifactId>shiro-web</artifactId>
  399. <version>${shiro.version}</version>
  400. </dependency>
  401. <dependency>
  402. <groupId>org.apache.shiro</groupId>
  403. <artifactId>shiro-ehcache</artifactId>
  404. <version>${shiro.version}</version>
  405. </dependency>
  406. <!-- SECURITY end -->
  407. <!-- Activiti -->
  408. <dependency>
  409. <groupId>org.activiti</groupId>
  410. <artifactId>activiti-engine</artifactId>
  411. <version>${activiti.version}</version>
  412. </dependency>
  413. <dependency>
  414. <groupId>org.activiti</groupId>
  415. <artifactId>activiti-secure-tasks</artifactId>
  416. <version>${activiti.version}</version>
  417. </dependency>
  418. <dependency>
  419. <groupId>org.activiti</groupId>
  420. <artifactId>activiti-spring</artifactId>
  421. <version>${activiti.version}</version>
  422. </dependency>
  423. <dependency>
  424. <groupId>org.activiti</groupId>
  425. <artifactId>activiti-bpmn-model</artifactId>
  426. <version>${activiti.version}</version>
  427. </dependency>
  428. <dependency>
  429. <groupId>org.activiti</groupId>
  430. <artifactId>activiti-bpmn-converter</artifactId>
  431. <version>${activiti.version}</version>
  432. </dependency>
  433. <dependency>
  434. <groupId>org.activiti</groupId>
  435. <artifactId>activiti-json-converter</artifactId>
  436. <version>${activiti.version}</version>
  437. </dependency>
  438. <dependency>
  439. <groupId>org.activiti</groupId>
  440. <artifactId>activiti-common-rest</artifactId>
  441. <version>${activiti.version}</version>
  442. </dependency>
  443. <dependency>
  444. <groupId>org.activiti</groupId>
  445. <artifactId>activiti-rest</artifactId>
  446. <version>${activiti.version}</version>
  447. </dependency>
  448. <dependency>
  449. <groupId>org.activiti</groupId>
  450. <artifactId>activiti-dmn-api</artifactId>
  451. <version>${activiti.version}</version>
  452. </dependency>
  453. <dependency>
  454. <groupId>org.activiti</groupId>
  455. <artifactId>activiti-dmn-engine</artifactId>
  456. <version>${activiti.version}</version>
  457. </dependency>
  458. <dependency>
  459. <groupId>org.activiti</groupId>
  460. <artifactId>activiti-dmn-model</artifactId>
  461. <version>${activiti.version}</version>
  462. </dependency>
  463. <dependency>
  464. <groupId>org.activiti</groupId>
  465. <artifactId>activiti-dmn-xml-converter</artifactId>
  466. <version>${activiti.version}</version>
  467. </dependency>
  468. <dependency>
  469. <groupId>org.activiti</groupId>
  470. <artifactId>activiti-dmn-json-converter</artifactId>
  471. <version>${activiti.version}</version>
  472. </dependency>
  473. <dependency>
  474. <groupId>org.activiti</groupId>
  475. <artifactId>activiti-dmn-rest</artifactId>
  476. <version>${activiti.version}</version>
  477. </dependency>
  478. <dependency>
  479. <groupId>org.activiti</groupId>
  480. <artifactId>activiti-dmn-engine-configurator</artifactId>
  481. <version>${activiti.version}</version>
  482. </dependency>
  483. <dependency>
  484. <groupId>org.activiti</groupId>
  485. <artifactId>activiti-form-model</artifactId>
  486. <version>${activiti.version}</version>
  487. </dependency>
  488. <dependency>
  489. <groupId>org.activiti</groupId>
  490. <artifactId>activiti-form-api</artifactId>
  491. <version>${activiti.version}</version>
  492. </dependency>
  493. <dependency>
  494. <groupId>org.activiti</groupId>
  495. <artifactId>activiti-form-json-converter</artifactId>
  496. <version>${activiti.version}</version>
  497. </dependency>
  498. <dependency>
  499. <groupId>org.activiti</groupId>
  500. <artifactId>activiti-form-engine</artifactId>
  501. <version>${activiti.version}</version>
  502. </dependency>
  503. <dependency>
  504. <groupId>org.activiti</groupId>
  505. <artifactId>activiti-form-engine-configurator</artifactId>
  506. <version>${activiti.version}</version>
  507. </dependency>
  508. <dependency>
  509. <groupId>org.activiti</groupId>
  510. <artifactId>activiti-camel</artifactId>
  511. <version>${activiti.version}</version>
  512. </dependency>
  513. <dependency>
  514. <groupId>org.activiti</groupId>
  515. <artifactId>activiti-mule</artifactId>
  516. <version>${activiti.version}</version>
  517. </dependency>
  518. <dependency>
  519. <groupId>org.activiti</groupId>
  520. <artifactId>activiti-crystalball</artifactId>
  521. <version>${activiti.version}</version>
  522. </dependency>
  523. <dependency>
  524. <groupId>org.activiti</groupId>
  525. <artifactId>activiti-app-conf</artifactId>
  526. <version>${activiti.version}</version>
  527. </dependency>
  528. <dependency>
  529. <groupId>org.activiti</groupId>
  530. <artifactId>activiti-webapp-rest2</artifactId>
  531. <version>${activiti.version}</version>
  532. <type>war</type>
  533. </dependency>
  534. <dependency>
  535. <groupId>org.activiti</groupId>
  536. <artifactId>activiti-cxf</artifactId>
  537. <version>${activiti.version}</version>
  538. </dependency>
  539. <dependency>
  540. <groupId>org.activiti</groupId>
  541. <artifactId>activiti-bpmn-layout</artifactId>
  542. <version>${activiti.version}</version>
  543. </dependency>
  544. <dependency>
  545. <groupId>org.activiti</groupId>
  546. <artifactId>activiti-process-validation</artifactId>
  547. <version>${activiti.version}</version>
  548. </dependency>
  549. <dependency>
  550. <groupId>org.activiti</groupId>
  551. <artifactId>activiti-image-generator</artifactId>
  552. <version>${activiti.version}</version>
  553. </dependency>
  554. <dependency>
  555. <groupId>org.activiti</groupId>
  556. <artifactId>activiti5-engine</artifactId>
  557. <version>${activiti.version}</version>
  558. </dependency>
  559. <dependency>
  560. <groupId>org.activiti</groupId>
  561. <artifactId>activiti5-spring</artifactId>
  562. <version>${activiti.version}</version>
  563. </dependency>
  564. <dependency>
  565. <groupId>org.activiti</groupId>
  566. <artifactId>activiti5-compatibility</artifactId>
  567. <version>${activiti.version}</version>
  568. </dependency>
  569. <dependency>
  570. <groupId>org.activiti</groupId>
  571. <artifactId>activiti5-spring-compatibility</artifactId>
  572. <version>${activiti.version}</version>
  573. </dependency>
  574. <dependency>
  575. <groupId>org.activiti</groupId>
  576. <artifactId>activiti-jmx</artifactId>
  577. <version>${activiti.version}</version>
  578. </dependency>
  579. <dependency>
  580. <groupId>org.activiti</groupId>
  581. <artifactId>activiti-app-rest</artifactId>
  582. <version>${activiti.version}</version>
  583. </dependency>
  584. <dependency>
  585. <groupId>org.activiti</groupId>
  586. <artifactId>activiti-app-rest</artifactId>
  587. <version>${activiti.version}</version>
  588. </dependency>
  589. <dependency>
  590. <groupId>org.activiti</groupId>
  591. <artifactId>activiti-app-logic</artifactId>
  592. <version>${activiti.version}</version>
  593. </dependency>
  594. <dependency>
  595. <groupId>org.activiti</groupId>
  596. <artifactId>content-storage-api</artifactId>
  597. <version>${activiti.version}</version>
  598. </dependency>
  599. <dependency>
  600. <groupId>org.activiti</groupId>
  601. <artifactId>content-storage-fs</artifactId>
  602. <version>${activiti.version}</version>
  603. </dependency>
  604. <dependency>
  605. <groupId>xerces</groupId>
  606. <artifactId>xercesImpl</artifactId>
  607. <version>2.11.0</version>
  608. </dependency>
  609. <dependency>
  610. <groupId>org.apache.cxf</groupId>
  611. <artifactId>cxf-api</artifactId>
  612. <version>2.7.6</version>
  613. </dependency>
  614. <dependency>
  615. <groupId>org.apache.cxf</groupId>
  616. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  617. <version>2.7.6</version>
  618. </dependency>
  619. <dependency>
  620. <groupId>org.apache.cxf</groupId>
  621. <artifactId>cxf-rt-transports-http-jetty</artifactId>
  622. <version>2.7.6</version>
  623. <scope>test</scope>
  624. </dependency>
  625. <dependency>
  626. <groupId>org.apache.cxf</groupId>
  627. <artifactId>cxf-rt-transports-http</artifactId>
  628. <version>2.7.6</version>
  629. </dependency>
  630. <dependency>
  631. <groupId>com.sun.xml.bind</groupId>
  632. <artifactId>jaxb-impl</artifactId>
  633. <version>2.2.11</version>
  634. </dependency>
  635. <!-- LOGGING begin -->
  636. <dependency>
  637. <groupId>org.slf4j</groupId>
  638. <artifactId>slf4j-api</artifactId>
  639. <version>${slf4j.version}</version>
  640. </dependency>
  641. <dependency>
  642. <groupId>org.slf4j</groupId>
  643. <artifactId>slf4j-log4j12</artifactId>
  644. <version>${slf4j.version}</version>
  645. </dependency>
  646. <!-- common-logging 实际调用slf4j -->
  647. <dependency>
  648. <groupId>org.slf4j</groupId>
  649. <artifactId>jcl-over-slf4j</artifactId>
  650. <version>${slf4j.version}</version>
  651. </dependency>
  652. <!-- java.util.logging 实际调用slf4j -->
  653. <dependency>
  654. <groupId>org.slf4j</groupId>
  655. <artifactId>jul-to-slf4j</artifactId>
  656. <version>${slf4j.version}</version>
  657. </dependency>
  658. <dependency>
  659. <groupId>log4j</groupId>
  660. <artifactId>log4j</artifactId>
  661. <version>${log4j.version}</version>
  662. </dependency>
  663. <!-- LOGGING end -->
  664. <!-- GENERAL UTILS begin -->
  665. <dependency>
  666. <groupId>commons-io</groupId>
  667. <artifactId>commons-io</artifactId>
  668. <version>${commons-io.version}</version>
  669. </dependency>
  670. <dependency>
  671. <groupId>commons-codec</groupId>
  672. <artifactId>commons-codec</artifactId>
  673. <version>${commons-codec.version}</version>
  674. </dependency>
  675. <dependency>
  676. <groupId>commons-fileupload</groupId>
  677. <artifactId>commons-fileupload</artifactId>
  678. <version>${commons-fileupload.version}</version>
  679. </dependency>
  680. <dependency>
  681. <groupId>commons-beanutils</groupId>
  682. <artifactId>commons-beanutils</artifactId>
  683. <version>${commons-beanutils.version}</version>
  684. <exclusions>
  685. <exclusion>
  686. <groupId>commons-logging</groupId>
  687. <artifactId>commons-logging</artifactId>
  688. </exclusion>
  689. </exclusions>
  690. </dependency>
  691. <dependency>
  692. <groupId>org.apache.commons</groupId>
  693. <artifactId>commons-text</artifactId>
  694. <version>${commons-text.version}</version>
  695. </dependency>
  696. <dependency>
  697. <groupId>org.apache.commons</groupId>
  698. <artifactId>commons-collections4</artifactId>
  699. <version>${commons-collections.version}</version>
  700. </dependency>
  701. <!-- jackson json -->
  702. <dependency>
  703. <groupId>com.fasterxml.jackson.core</groupId>
  704. <artifactId>jackson-core</artifactId>
  705. <version>${jackson.version}</version>
  706. </dependency>
  707. <dependency>
  708. <groupId>com.fasterxml.jackson.core</groupId>
  709. <artifactId>jackson-databind</artifactId>
  710. <version>${jackson.version}</version>
  711. </dependency>
  712. <dependency>
  713. <groupId>com.fasterxml.jackson.core</groupId>
  714. <artifactId>jackson-annotations</artifactId>
  715. <version>${jackson.version}</version>
  716. </dependency>
  717. <dependency>
  718. <groupId>com.fasterxml.jackson.module</groupId>
  719. <artifactId>jackson-module-jaxb-annotations</artifactId>
  720. <version>${jackson.version}</version>
  721. </dependency>
  722. <!-- fastjson json-->
  723. <dependency>
  724. <groupId>com.alibaba</groupId>
  725. <artifactId>fastjson</artifactId>
  726. <version>${fastjson.version}</version>
  727. </dependency>
  728. <!-- xstream xml -->
  729. <dependency>
  730. <groupId>com.thoughtworks.xstream</groupId>
  731. <artifactId>xstream</artifactId>
  732. <version>${xstream.version}</version>
  733. </dependency>
  734. <!-- pojo copy -->
  735. <dependency>
  736. <groupId>net.sf.dozer</groupId>
  737. <artifactId>dozer</artifactId>
  738. <version>${dozer.version}</version>
  739. </dependency>
  740. <!-- template engine -->
  741. <dependency>
  742. <groupId>org.freemarker</groupId>
  743. <artifactId>freemarker</artifactId>
  744. <version>${freemarker.version}</version>
  745. </dependency>
  746. <dependency>
  747. <groupId>com.ibeetl</groupId>
  748. <artifactId>beetl</artifactId>
  749. <version>2.7.5</version>
  750. </dependency>
  751. <!-- email -->
  752. <dependency>
  753. <groupId>javax.mail</groupId>
  754. <artifactId>mail</artifactId>
  755. <version>1.4.7</version>
  756. </dependency>
  757. <dependency>
  758. <groupId>javax.activation</groupId>
  759. <artifactId>activation</artifactId>
  760. <version>1.1.1</version>
  761. </dependency>
  762. <!-- poi office -->
  763. <dependency>
  764. <groupId>org.apache.poi</groupId>
  765. <artifactId>poi</artifactId>
  766. <version>${poi.version}</version>
  767. </dependency>
  768. <dependency>
  769. <groupId>org.apache.poi</groupId>
  770. <artifactId>poi-ooxml</artifactId>
  771. <version>${poi.version}</version>
  772. </dependency>
  773. <dependency>
  774. <groupId>org.apache.poi</groupId>
  775. <artifactId>poi-ooxml-schemas</artifactId>
  776. <version>${poi.version}</version>
  777. </dependency>
  778. <!-- image util -->
  779. <dependency>
  780. <groupId>com.drewnoakes</groupId>
  781. <artifactId>metadata-extractor</artifactId>
  782. <version>2.6.2</version>
  783. </dependency>
  784. <!-- 条形码、二维码生成 -->
  785. <dependency>
  786. <groupId>com.google.zxing</groupId>
  787. <artifactId>core</artifactId>
  788. <version>3.3.0</version>
  789. </dependency>
  790. <dependency>
  791. <groupId>batik</groupId>
  792. <artifactId>batik-util</artifactId>
  793. <version>1.6-1</version>
  794. </dependency>
  795. <!-- quartz -->
  796. <dependency>
  797. <groupId>org.quartz-scheduler</groupId>
  798. <artifactId>quartz</artifactId>
  799. <version>${quartz.version}</version>
  800. </dependency>
  801. <dependency>
  802. <groupId>org.quartz-scheduler</groupId>
  803. <artifactId>quartz-jobs</artifactId>
  804. <version>${quartz.version}</version>
  805. </dependency>
  806. <!--&lt;!&ndash; 中文分词 &ndash;&gt;-->
  807. <!--<dependency>-->
  808. <!--<groupId>org.wltea</groupId>-->
  809. <!--<artifactId>analyzer</artifactId>-->
  810. <!--<version>2012_u6</version>-->
  811. <!--</dependency>-->
  812. <!-- GENERAL UTILS end -->
  813. <!-- sigar -->
  814. <!-- https://mvnrepository.com/artifact/org.fusesource/sigar -->
  815. <dependency>
  816. <groupId>org.fusesource</groupId>
  817. <artifactId>sigar</artifactId>
  818. <version>1.6.4</version>
  819. </dependency>
  820. <!-- CKFinder begin -->
  821. <dependency>
  822. <groupId>net.coobird</groupId>
  823. <artifactId>thumbnailator</artifactId>
  824. <version>0.4.2</version>
  825. </dependency>
  826. <!--<dependency>-->
  827. <!--<groupId>com.ckfinder</groupId>-->
  828. <!--<artifactId>apache-ant-zip</artifactId>-->
  829. <!--<version>${ckfinder.version}</version>-->
  830. <!--</dependency>-->
  831. <!--<dependency>-->
  832. <!--<groupId>com.ckfinder</groupId>-->
  833. <!--<artifactId>ckfinder</artifactId>-->
  834. <!--<version>${ckfinder.version}</version>-->
  835. <!--</dependency>-->
  836. <!--<dependency>-->
  837. <!--<groupId>com.ckfinder</groupId>-->
  838. <!--<artifactId>ckfinderplugin-fileeditor</artifactId>-->
  839. <!--<version>${ckfinder.version}</version>-->
  840. <!--</dependency>-->
  841. <!--<dependency>-->
  842. <!--<groupId>com.ckfinder</groupId>-->
  843. <!--<artifactId>ckfinderplugin-imageresize</artifactId>-->
  844. <!--<version>${ckfinder.version}</version>-->
  845. <!--</dependency>-->
  846. <!-- CKFinder end -->
  847. <!-- Echarts图表依赖包开始 -->
  848. <!-- https://mvnrepository.com/artifact/com.github.abel533/ECharts -->
  849. <dependency>
  850. <groupId>com.github.abel533</groupId>
  851. <artifactId>ECharts</artifactId>
  852. <version>3.0.0.2</version>
  853. </dependency>
  854. <dependency>
  855. <groupId>com.google.code.gson</groupId>
  856. <artifactId>gson</artifactId>
  857. <version>2.6.2</version>
  858. </dependency>
  859. <!-- Echarts图表依赖包结束 -->
  860. <!-- TEST begin -->
  861. <dependency>
  862. <groupId>junit</groupId>
  863. <artifactId>junit</artifactId>
  864. <version>4.12</version>
  865. </dependency>
  866. <dependency>
  867. <groupId>org.springframework</groupId>
  868. <artifactId>spring-test</artifactId>
  869. <version>${spring.version}</version>
  870. </dependency>
  871. <!-- TEST end -->
  872. <dependency>
  873. <groupId>eu.bitwalker</groupId>
  874. <artifactId>UserAgentUtils</artifactId>
  875. <version>1.20</version>
  876. </dependency>
  877. <!--httpcore -->
  878. <dependency>
  879. <groupId>org.apache.httpcomponents</groupId>
  880. <artifactId>httpcore</artifactId>
  881. <version>4.4.4</version>
  882. </dependency>
  883. <!-- swagger-springmvc -->
  884. <dependency>
  885. <groupId>io.springfox</groupId>
  886. <artifactId>springfox-swagger2</artifactId>
  887. <version>2.7.0</version>
  888. </dependency>
  889. <dependency>
  890. <groupId>io.springfox</groupId>
  891. <artifactId>springfox-swagger-ui</artifactId>
  892. <version>2.7.0</version>
  893. </dependency>
  894. <!-- swagger-springmvc -->
  895. <!--httpclient -->
  896. <dependency>
  897. <groupId>org.apache.httpcomponents</groupId>
  898. <artifactId>httpclient</artifactId>
  899. <version>4.5.2</version>
  900. </dependency>
  901. <!-- UTILS begin -->
  902. <dependency>
  903. <groupId>com.google.guava</groupId>
  904. <artifactId>guava</artifactId>
  905. <version>${guava.version}</version>
  906. </dependency>
  907. <dependency>
  908. <groupId>org.apache.commons</groupId>
  909. <artifactId>commons-lang3</artifactId>
  910. <version>${commons-lang3.version}</version>
  911. </dependency>
  912. <!-- UTILS end -->
  913. <dependency>
  914. <groupId>com.aliyun</groupId>
  915. <artifactId>aliyun-java-sdk-core</artifactId>
  916. <version>3.2.2</version>
  917. </dependency>
  918. <dependency>
  919. <groupId>com.aliyun</groupId>
  920. <artifactId>aliyun-java-sdk-vod</artifactId>
  921. <version>2.2.0</version>
  922. </dependency>
  923. <dependency>
  924. <groupId>com.aliyun.oss</groupId>
  925. <artifactId>aliyun-sdk-oss</artifactId>
  926. <version>2.0.6</version>
  927. </dependency>
  928. <dependency>
  929. <groupId>aopalliance</groupId>
  930. <artifactId>aopalliance</artifactId>
  931. <version>1.0</version>
  932. </dependency>
  933. <dependency>
  934. <groupId>dom4j</groupId>
  935. <artifactId>dom4j</artifactId>
  936. <version>1.6.1</version>
  937. </dependency>
  938. <dependency>
  939. <groupId>net.sf.ezmorph</groupId>
  940. <artifactId>ezmorph</artifactId>
  941. <version>1.0.6</version>
  942. </dependency>
  943. <dependency>
  944. <groupId>org.jboss.logging</groupId>
  945. <artifactId>jboss-logging</artifactId>
  946. <version>3.3.0.Final</version>
  947. </dependency>
  948. <dependency>
  949. <groupId>org.jboss</groupId>
  950. <artifactId>jboss-vfs</artifactId>
  951. <version>3.2.12.Final</version>
  952. </dependency>
  953. <dependency>
  954. <groupId>org.jdom</groupId>
  955. <artifactId>jdom</artifactId>
  956. <version>1.1</version>
  957. </dependency>
  958. <dependency>
  959. <groupId>org.codehaus.jettison</groupId>
  960. <artifactId>jettison</artifactId>
  961. <version>1.1</version>
  962. </dependency>
  963. <dependency>
  964. <groupId>net.sf.json-lib</groupId>
  965. <artifactId>json-lib</artifactId>
  966. <version>2.4</version>
  967. </dependency>
  968. <dependency>
  969. <groupId>org.json</groupId>
  970. <artifactId>json</artifactId>
  971. <version>20160810</version>
  972. </dependency>
  973. <dependency>
  974. <groupId>com.drewnoakes</groupId>
  975. <artifactId>metadata-extractor</artifactId>
  976. <version>2.10.1</version>
  977. </dependency>
  978. <dependency>
  979. <groupId>net.coobird</groupId>
  980. <artifactId>thumbnailator</artifactId>
  981. <version>0.4.8</version>
  982. </dependency>
  983. <dependency>
  984. <groupId>com.adobe.xmp</groupId>
  985. <artifactId>xmpcore</artifactId>
  986. <version>5.1.3</version>
  987. </dependency>
  988. <dependency>
  989. <groupId>xpp3</groupId>
  990. <artifactId>xpp3_min</artifactId>
  991. <version>1.1.4c</version>
  992. </dependency>
  993. <dependency>
  994. <groupId>com.thoughtworks.xstream</groupId>
  995. <artifactId>xstream</artifactId>
  996. <version>1.4</version>
  997. </dependency>
  998. <dependency>
  999. <groupId>org.apache.velocity</groupId>
  1000. <artifactId>velocity-engine-core</artifactId>
  1001. <version>2.0</version>
  1002. </dependency>
  1003. <dependency>
  1004. <groupId>org.apache.velocity</groupId>
  1005. <artifactId>velocity-tools</artifactId>
  1006. <version>2.0</version>
  1007. </dependency>
  1008. <dependency>
  1009. <groupId>com.fasterxml.uuid</groupId>
  1010. <artifactId>java-uuid-generator</artifactId>
  1011. <version>3.1.3</version>
  1012. </dependency>
  1013. <dependency>
  1014. <groupId>com.baidu</groupId>
  1015. <artifactId>ueditor</artifactId>
  1016. <version>1.1.2</version>
  1017. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/ueditor-1.1.2.jar</systemPath>
  1018. </dependency>
  1019. </dependencies>
  1020. </project>