pom.xml 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972
  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. </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. <exclusions>
  203. <exclusion>
  204. <groupId>c3p0</groupId>
  205. <artifactId>c3p0</artifactId>
  206. </exclusion>
  207. </exclusions>
  208. </dependency>
  209. <!-- spring websocket-->
  210. <dependency>
  211. <groupId>org.springframework</groupId>
  212. <artifactId>spring-websocket</artifactId>
  213. <version>${spring.version}</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>org.springframework</groupId>
  217. <artifactId>spring-messaging</artifactId>
  218. <version>${spring.version}</version>
  219. </dependency>
  220. <!-- bean validate -->
  221. <dependency>
  222. <groupId>org.hibernate</groupId>
  223. <artifactId>hibernate-validator</artifactId>
  224. <version>${validator.version}</version>
  225. </dependency>
  226. <!-- SPRING end -->
  227. <!-- AOP begin -->
  228. <dependency>
  229. <groupId>org.aspectj</groupId>
  230. <artifactId>aspectjrt</artifactId>
  231. <version>1.7.4</version>
  232. </dependency>
  233. <dependency>
  234. <groupId>org.aspectj</groupId>
  235. <artifactId>aspectjweaver</artifactId>
  236. <version>1.7.4</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>cglib</groupId>
  240. <artifactId>cglib</artifactId>
  241. <version>3.1</version>
  242. </dependency>
  243. <!-- AOP end -->
  244. <!-- PERSISTENCE begin -->
  245. <!-- MyBatis -->
  246. <dependency>
  247. <groupId>org.mybatis</groupId>
  248. <artifactId>mybatis</artifactId>
  249. <version>${mybatis.version}</version>
  250. </dependency>
  251. <dependency>
  252. <groupId>org.mybatis</groupId>
  253. <artifactId>mybatis-spring</artifactId>
  254. <version>${mybatis-spring.version}</version>
  255. </dependency>
  256. <!-- connection pool -->
  257. <dependency>
  258. <groupId>com.alibaba</groupId>
  259. <artifactId>druid</artifactId>
  260. <version>${druid.version}</version>
  261. </dependency>
  262. <!-- jdbc driver -->
  263. <dependency>
  264. <groupId>mysql</groupId>
  265. <artifactId>mysql-connector-java</artifactId>
  266. <version>${mysql.driver.version}</version>
  267. </dependency>
  268. <!--<dependency>-->
  269. <!--<groupId>com.microsoft.sqlserver</groupId>-->
  270. <!--<artifactId>sqljdbc4</artifactId>-->
  271. <!--<version>${sqlserver.driver.version}</version>-->
  272. <!--</dependency>-->
  273. <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/sqljdbc4 -->
  274. <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
  275. <dependency>
  276. <groupId>com.microsoft.sqlserver</groupId>
  277. <artifactId>mssql-jdbc</artifactId>
  278. <version>6.4.0.jre8</version>
  279. </dependency>
  280. <dependency>
  281. <groupId>com.mchange</groupId>
  282. <artifactId>c3p0</artifactId>
  283. <version>0.9.5.2</version>
  284. </dependency>
  285. <!-- WEB begin -->
  286. <dependency>
  287. <groupId>org.springframework</groupId>
  288. <artifactId>spring-web</artifactId>
  289. <version>${spring.version}</version>
  290. </dependency>
  291. <dependency>
  292. <groupId>org.springframework</groupId>
  293. <artifactId>spring-webmvc</artifactId>
  294. <version>${spring.version}</version>
  295. </dependency>
  296. <dependency>
  297. <groupId>org.springframework</groupId>
  298. <artifactId>spring-oxm</artifactId>
  299. <version>${spring.version}</version>
  300. </dependency>
  301. <dependency>
  302. <groupId>opensymphony</groupId>
  303. <artifactId>sitemesh</artifactId>
  304. <version>${sitemesh.version}</version>
  305. </dependency>
  306. <!--<dependency>-->
  307. <!--<groupId>taglibs</groupId>-->
  308. <!--<artifactId>standard</artifactId>-->
  309. <!--<version>1.1.2</version>-->
  310. <!--<type>jar</type>-->
  311. <!--</dependency>-->
  312. <dependency>
  313. <groupId>javax</groupId>
  314. <artifactId>javaee-api</artifactId>
  315. <version>7.0</version>
  316. <scope>provided</scope>
  317. </dependency>
  318. <dependency>
  319. <groupId>javax.servlet</groupId>
  320. <artifactId>jstl</artifactId>
  321. <version>1.2</version>
  322. <type>jar</type>
  323. </dependency>
  324. <dependency>
  325. <groupId>javax.servlet</groupId>
  326. <artifactId>servlet-api</artifactId>
  327. <version>2.5</version>
  328. <scope>provided</scope>
  329. </dependency>
  330. <dependency>
  331. <groupId>javax.servlet.jsp</groupId>
  332. <artifactId>jsp-api</artifactId>
  333. <version>2.1</version>
  334. <scope>provided</scope>
  335. </dependency>
  336. <!-- <dependency>
  337. <groupId>javax.servlet</groupId>
  338. <artifactId>javax.servlet-api</artifactId>
  339. <version>3.0.1</version>
  340. <scope>provided</scope>
  341. </dependency>
  342. <dependency>
  343. <groupId>javax.servlet.jsp</groupId>
  344. <artifactId>jsp-api</artifactId>
  345. <version>2.2</version>
  346. <scope>provided</scope>
  347. </dependency>-->
  348. <dependency>
  349. <groupId>net.sf.ehcache</groupId>
  350. <artifactId>ehcache-core</artifactId>
  351. <version>${ehcache.version}</version>
  352. </dependency>
  353. <dependency>
  354. <groupId>org.jgroups</groupId>
  355. <artifactId>jgroups</artifactId>
  356. <version>3.6.6.Final</version>
  357. </dependency>
  358. <dependency>
  359. <groupId>redis.clients</groupId>
  360. <artifactId>jedis</artifactId>
  361. <version>2.8.0</version>
  362. </dependency>
  363. <dependency>
  364. <groupId>org.apache.commons</groupId>
  365. <artifactId>commons-pool2</artifactId>
  366. <version>2.4.2</version>
  367. </dependency>
  368. <dependency>
  369. <groupId>de.ruedigermoeller</groupId>
  370. <artifactId>fst</artifactId>
  371. <version>2.42</version>
  372. </dependency>
  373. <dependency>
  374. <groupId>com.esotericsoftware</groupId>
  375. <artifactId>kryo-shaded</artifactId>
  376. <version>3.0.0</version>
  377. </dependency>
  378. <!-- CACHE end -->
  379. <!-- SECURITY begin -->
  380. <dependency>
  381. <groupId>org.apache.shiro</groupId>
  382. <artifactId>shiro-core</artifactId>
  383. <version>${shiro.version}</version>
  384. </dependency>
  385. <dependency>
  386. <groupId>org.apache.shiro</groupId>
  387. <artifactId>shiro-spring</artifactId>
  388. <version>${shiro.version}</version>
  389. </dependency>
  390. <dependency>
  391. <groupId>org.apache.shiro</groupId>
  392. <artifactId>shiro-cas</artifactId>
  393. <version>${shiro.version}</version>
  394. <exclusions>
  395. <exclusion>
  396. <groupId>commons-logging</groupId>
  397. <artifactId>commons-logging</artifactId>
  398. </exclusion>
  399. </exclusions>
  400. </dependency>
  401. <dependency>
  402. <groupId>org.apache.shiro</groupId>
  403. <artifactId>shiro-web</artifactId>
  404. <version>${shiro.version}</version>
  405. </dependency>
  406. <dependency>
  407. <groupId>org.apache.shiro</groupId>
  408. <artifactId>shiro-ehcache</artifactId>
  409. <version>${shiro.version}</version>
  410. </dependency>
  411. <!-- SECURITY end -->
  412. <!-- Activiti -->
  413. <dependency>
  414. <groupId>org.activiti</groupId>
  415. <artifactId>activiti-engine</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-explorer</artifactId>
  426. <version>${activiti.version}</version>
  427. <exclusions>
  428. <exclusion>
  429. <artifactId>vaadin</artifactId>
  430. <groupId>com.vaadin</groupId>
  431. </exclusion>
  432. <exclusion>
  433. <artifactId>dcharts-widget</artifactId>
  434. <groupId>org.vaadin.addons</groupId>
  435. </exclusion>
  436. <exclusion>
  437. <artifactId>activiti-simple-workflow</artifactId>
  438. <groupId>org.activiti</groupId>
  439. </exclusion>
  440. </exclusions>
  441. </dependency>
  442. <dependency>
  443. <groupId>org.activiti</groupId>
  444. <artifactId>activiti-modeler</artifactId>
  445. <version>${activiti.version}</version>
  446. </dependency>
  447. <dependency>
  448. <groupId>org.activiti</groupId>
  449. <artifactId>activiti-rest</artifactId>
  450. <version>${activiti.version}</version>
  451. </dependency>
  452. <dependency>
  453. <groupId>org.activiti</groupId>
  454. <artifactId>activiti-diagram-rest</artifactId>
  455. <version>${activiti.version}</version>
  456. </dependency>
  457. <dependency>
  458. <groupId>org.activiti</groupId>
  459. <artifactId>activiti-json-converter</artifactId>
  460. <version>${activiti.version}</version>
  461. </dependency>
  462. <dependency>
  463. <groupId>org.activiti</groupId>
  464. <artifactId>activiti-cxf</artifactId>
  465. <version>${activiti.version}</version>
  466. </dependency>
  467. <dependency>
  468. <groupId>xerces</groupId>
  469. <artifactId>xercesImpl</artifactId>
  470. <version>2.11.0</version>
  471. </dependency>
  472. <dependency>
  473. <groupId>org.apache.cxf</groupId>
  474. <artifactId>cxf-api</artifactId>
  475. <version>2.7.6</version>
  476. </dependency>
  477. <dependency>
  478. <groupId>org.apache.cxf</groupId>
  479. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  480. <version>2.7.6</version>
  481. </dependency>
  482. <dependency>
  483. <groupId>org.apache.cxf</groupId>
  484. <artifactId>cxf-rt-transports-http-jetty</artifactId>
  485. <version>2.7.6</version>
  486. <scope>test</scope>
  487. </dependency>
  488. <dependency>
  489. <groupId>org.apache.cxf</groupId>
  490. <artifactId>cxf-rt-transports-http</artifactId>
  491. <version>2.7.6</version>
  492. </dependency>
  493. <dependency>
  494. <groupId>com.sun.xml.bind</groupId>
  495. <artifactId>jaxb-impl</artifactId>
  496. <version>2.2.11</version>
  497. </dependency>
  498. <!-- LOGGING begin -->
  499. <dependency>
  500. <groupId>org.slf4j</groupId>
  501. <artifactId>slf4j-api</artifactId>
  502. <version>${slf4j.version}</version>
  503. </dependency>
  504. <dependency>
  505. <groupId>org.slf4j</groupId>
  506. <artifactId>slf4j-log4j12</artifactId>
  507. <version>${slf4j.version}</version>
  508. </dependency>
  509. <!-- common-logging 实际调用slf4j -->
  510. <dependency>
  511. <groupId>org.slf4j</groupId>
  512. <artifactId>jcl-over-slf4j</artifactId>
  513. <version>${slf4j.version}</version>
  514. </dependency>
  515. <!-- java.util.logging 实际调用slf4j -->
  516. <dependency>
  517. <groupId>org.slf4j</groupId>
  518. <artifactId>jul-to-slf4j</artifactId>
  519. <version>${slf4j.version}</version>
  520. </dependency>
  521. <dependency>
  522. <groupId>log4j</groupId>
  523. <artifactId>log4j</artifactId>
  524. <version>${log4j.version}</version>
  525. </dependency>
  526. <!-- LOGGING end -->
  527. <!-- GENERAL UTILS begin -->
  528. <dependency>
  529. <groupId>commons-io</groupId>
  530. <artifactId>commons-io</artifactId>
  531. <version>${commons-io.version}</version>
  532. </dependency>
  533. <dependency>
  534. <groupId>commons-codec</groupId>
  535. <artifactId>commons-codec</artifactId>
  536. <version>${commons-codec.version}</version>
  537. </dependency>
  538. <dependency>
  539. <groupId>commons-fileupload</groupId>
  540. <artifactId>commons-fileupload</artifactId>
  541. <version>${commons-fileupload.version}</version>
  542. </dependency>
  543. <dependency>
  544. <groupId>commons-beanutils</groupId>
  545. <artifactId>commons-beanutils</artifactId>
  546. <version>${commons-beanutils.version}</version>
  547. <exclusions>
  548. <exclusion>
  549. <groupId>commons-logging</groupId>
  550. <artifactId>commons-logging</artifactId>
  551. </exclusion>
  552. </exclusions>
  553. </dependency>
  554. <dependency>
  555. <groupId>org.apache.commons</groupId>
  556. <artifactId>commons-text</artifactId>
  557. <version>${commons-text.version}</version>
  558. </dependency>
  559. <dependency>
  560. <groupId>org.apache.commons</groupId>
  561. <artifactId>commons-collections4</artifactId>
  562. <version>${commons-collections.version}</version>
  563. </dependency>
  564. <!-- jackson json -->
  565. <dependency>
  566. <groupId>com.fasterxml.jackson.core</groupId>
  567. <artifactId>jackson-core</artifactId>
  568. <version>${jackson.version}</version>
  569. </dependency>
  570. <dependency>
  571. <groupId>com.fasterxml.jackson.core</groupId>
  572. <artifactId>jackson-databind</artifactId>
  573. <version>${jackson.version}</version>
  574. </dependency>
  575. <dependency>
  576. <groupId>com.fasterxml.jackson.core</groupId>
  577. <artifactId>jackson-annotations</artifactId>
  578. <version>${jackson.version}</version>
  579. </dependency>
  580. <dependency>
  581. <groupId>com.fasterxml.jackson.module</groupId>
  582. <artifactId>jackson-module-jaxb-annotations</artifactId>
  583. <version>${jackson.version}</version>
  584. </dependency>
  585. <!-- fastjson json-->
  586. <dependency>
  587. <groupId>com.alibaba</groupId>
  588. <artifactId>fastjson</artifactId>
  589. <version>${fastjson.version}</version>
  590. </dependency>
  591. <!-- xstream xml -->
  592. <dependency>
  593. <groupId>com.thoughtworks.xstream</groupId>
  594. <artifactId>xstream</artifactId>
  595. <version>${xstream.version}</version>
  596. </dependency>
  597. <!-- pojo copy -->
  598. <dependency>
  599. <groupId>net.sf.dozer</groupId>
  600. <artifactId>dozer</artifactId>
  601. <version>${dozer.version}</version>
  602. </dependency>
  603. <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j -->
  604. <dependency>
  605. <groupId>com.belerweb</groupId>
  606. <artifactId>pinyin4j</artifactId>
  607. <version>2.5.1</version>
  608. </dependency>
  609. <!-- template engine -->
  610. <dependency>
  611. <groupId>org.freemarker</groupId>
  612. <artifactId>freemarker</artifactId>
  613. <version>${freemarker.version}</version>
  614. </dependency>
  615. <dependency>
  616. <groupId>com.ibeetl</groupId>
  617. <artifactId>beetl</artifactId>
  618. <version>2.7.5</version>
  619. </dependency>
  620. <!-- email -->
  621. <dependency>
  622. <groupId>javax.mail</groupId>
  623. <artifactId>mail</artifactId>
  624. <version>1.4.7</version>
  625. </dependency>
  626. <dependency>
  627. <groupId>javax.activation</groupId>
  628. <artifactId>activation</artifactId>
  629. <version>1.1.1</version>
  630. </dependency>
  631. <!-- poi office -->
  632. <dependency>
  633. <groupId>org.apache.poi</groupId>
  634. <artifactId>poi</artifactId>
  635. <version>${poi.version}</version>
  636. </dependency>
  637. <dependency>
  638. <groupId>org.apache.poi</groupId>
  639. <artifactId>poi-ooxml</artifactId>
  640. <version>${poi.version}</version>
  641. </dependency>
  642. <dependency>
  643. <groupId>org.apache.poi</groupId>
  644. <artifactId>poi-ooxml-schemas</artifactId>
  645. <version>${poi.version}</version>
  646. </dependency>
  647. <!-- image util -->
  648. <dependency>
  649. <groupId>com.drewnoakes</groupId>
  650. <artifactId>metadata-extractor</artifactId>
  651. <version>2.6.2</version>
  652. </dependency>
  653. <!-- 条形码、二维码生成 -->
  654. <dependency>
  655. <groupId>com.google.zxing</groupId>
  656. <artifactId>core</artifactId>
  657. <version>3.3.0</version>
  658. </dependency>
  659. <dependency>
  660. <groupId>batik</groupId>
  661. <artifactId>batik-util</artifactId>
  662. <version>1.6-1</version>
  663. </dependency>
  664. <!-- quartz -->
  665. <dependency>
  666. <groupId>org.quartz-scheduler</groupId>
  667. <artifactId>quartz</artifactId>
  668. <version>${quartz.version}</version>
  669. <exclusions>
  670. <exclusion>
  671. <groupId>c3p0</groupId>
  672. <artifactId>c3p0</artifactId>
  673. </exclusion>
  674. </exclusions>
  675. </dependency>
  676. <dependency>
  677. <groupId>org.quartz-scheduler</groupId>
  678. <artifactId>quartz-jobs</artifactId>
  679. <version>${quartz.version}</version>
  680. </dependency>
  681. <!--&lt;!&ndash; 中文分词 &ndash;&gt;-->
  682. <!--<dependency>-->
  683. <!--<groupId>org.wltea</groupId>-->
  684. <!--<artifactId>analyzer</artifactId>-->
  685. <!--<version>2012_u6</version>-->
  686. <!--</dependency>-->
  687. <!-- GENERAL UTILS end -->
  688. <!-- sigar -->
  689. <!-- https://mvnrepository.com/artifact/org.fusesource/sigar -->
  690. <dependency>
  691. <groupId>org.fusesource</groupId>
  692. <artifactId>sigar</artifactId>
  693. <version>1.6.4</version>
  694. </dependency>
  695. <!-- CKFinder begin -->
  696. <dependency>
  697. <groupId>net.coobird</groupId>
  698. <artifactId>thumbnailator</artifactId>
  699. <version>0.4.2</version>
  700. </dependency>
  701. <!--<dependency>-->
  702. <!--<groupId>com.ckfinder</groupId>-->
  703. <!--<artifactId>apache-ant-zip</artifactId>-->
  704. <!--<version>${ckfinder.version}</version>-->
  705. <!--</dependency>-->
  706. <!--<dependency>-->
  707. <!--<groupId>com.ckfinder</groupId>-->
  708. <!--<artifactId>ckfinder</artifactId>-->
  709. <!--<version>${ckfinder.version}</version>-->
  710. <!--</dependency>-->
  711. <!--<dependency>-->
  712. <!--<groupId>com.ckfinder</groupId>-->
  713. <!--<artifactId>ckfinderplugin-fileeditor</artifactId>-->
  714. <!--<version>${ckfinder.version}</version>-->
  715. <!--</dependency>-->
  716. <!--<dependency>-->
  717. <!--<groupId>com.ckfinder</groupId>-->
  718. <!--<artifactId>ckfinderplugin-imageresize</artifactId>-->
  719. <!--<version>${ckfinder.version}</version>-->
  720. <!--</dependency>-->
  721. <!-- CKFinder end -->
  722. <!-- Echarts图表依赖包开始 -->
  723. <!-- https://mvnrepository.com/artifact/com.github.abel533/ECharts -->
  724. <dependency>
  725. <groupId>com.github.abel533</groupId>
  726. <artifactId>ECharts</artifactId>
  727. <version>3.0.0.2</version>
  728. </dependency>
  729. <dependency>
  730. <groupId>com.google.code.gson</groupId>
  731. <artifactId>gson</artifactId>
  732. <version>2.6.2</version>
  733. </dependency>
  734. <!-- Echarts图表依赖包结束 -->
  735. <!-- TEST begin -->
  736. <dependency>
  737. <groupId>junit</groupId>
  738. <artifactId>junit</artifactId>
  739. <version>4.12</version>
  740. </dependency>
  741. <dependency>
  742. <groupId>org.springframework</groupId>
  743. <artifactId>spring-test</artifactId>
  744. <version>${spring.version}</version>
  745. </dependency>
  746. <!-- TEST end -->
  747. <dependency>
  748. <groupId>eu.bitwalker</groupId>
  749. <artifactId>UserAgentUtils</artifactId>
  750. <version>1.20</version>
  751. </dependency>
  752. <!--httpcore -->
  753. <dependency>
  754. <groupId>org.apache.httpcomponents</groupId>
  755. <artifactId>httpcore</artifactId>
  756. <version>4.4.4</version>
  757. </dependency>
  758. <!-- swagger-springmvc -->
  759. <dependency>
  760. <groupId>io.springfox</groupId>
  761. <artifactId>springfox-swagger2</artifactId>
  762. <version>2.7.0</version>
  763. </dependency>
  764. <dependency>
  765. <groupId>io.springfox</groupId>
  766. <artifactId>springfox-swagger-ui</artifactId>
  767. <version>2.7.0</version>
  768. </dependency>
  769. <!-- swagger-springmvc -->
  770. <!--httpclient -->
  771. <dependency>
  772. <groupId>org.apache.httpcomponents</groupId>
  773. <artifactId>httpclient</artifactId>
  774. <version>4.5.2</version>
  775. </dependency>
  776. <!-- UTILS begin -->
  777. <dependency>
  778. <groupId>com.google.guava</groupId>
  779. <artifactId>guava</artifactId>
  780. <version>${guava.version}</version>
  781. </dependency>
  782. <dependency>
  783. <groupId>org.apache.commons</groupId>
  784. <artifactId>commons-lang3</artifactId>
  785. <version>${commons-lang3.version}</version>
  786. </dependency>
  787. <!-- UTILS end -->
  788. <dependency>
  789. <groupId>com.aliyun</groupId>
  790. <artifactId>aliyun-java-sdk-core</artifactId>
  791. <version>3.2.2</version>
  792. </dependency>
  793. <dependency>
  794. <groupId>com.aliyun</groupId>
  795. <artifactId>aliyun-java-sdk-vod</artifactId>
  796. <version>2.2.0</version>
  797. </dependency>
  798. <dependency>
  799. <groupId>com.aliyun.oss</groupId>
  800. <artifactId>aliyun-sdk-oss</artifactId>
  801. <version>2.0.6</version>
  802. </dependency>
  803. <dependency>
  804. <groupId>aopalliance</groupId>
  805. <artifactId>aopalliance</artifactId>
  806. <version>1.0</version>
  807. </dependency>
  808. <dependency>
  809. <groupId>dom4j</groupId>
  810. <artifactId>dom4j</artifactId>
  811. <version>1.6.1</version>
  812. </dependency>
  813. <dependency>
  814. <groupId>net.sf.ezmorph</groupId>
  815. <artifactId>ezmorph</artifactId>
  816. <version>1.0.6</version>
  817. </dependency>
  818. <dependency>
  819. <groupId>org.jboss.logging</groupId>
  820. <artifactId>jboss-logging</artifactId>
  821. <version>3.3.0.Final</version>
  822. </dependency>
  823. <dependency>
  824. <groupId>org.jboss</groupId>
  825. <artifactId>jboss-vfs</artifactId>
  826. <version>3.2.12.Final</version>
  827. </dependency>
  828. <dependency>
  829. <groupId>org.jdom</groupId>
  830. <artifactId>jdom</artifactId>
  831. <version>1.1</version>
  832. </dependency>
  833. <dependency>
  834. <groupId>org.codehaus.jettison</groupId>
  835. <artifactId>jettison</artifactId>
  836. <version>1.1</version>
  837. </dependency>
  838. <dependency>
  839. <groupId>net.sf.json-lib</groupId>
  840. <artifactId>json-lib</artifactId>
  841. <version>2.4</version>
  842. </dependency>
  843. <dependency>
  844. <groupId>org.json</groupId>
  845. <artifactId>json</artifactId>
  846. <version>20160810</version>
  847. </dependency>
  848. <dependency>
  849. <groupId>com.drewnoakes</groupId>
  850. <artifactId>metadata-extractor</artifactId>
  851. <version>2.10.1</version>
  852. </dependency>
  853. <dependency>
  854. <groupId>net.coobird</groupId>
  855. <artifactId>thumbnailator</artifactId>
  856. <version>0.4.8</version>
  857. </dependency>
  858. <dependency>
  859. <groupId>com.adobe.xmp</groupId>
  860. <artifactId>xmpcore</artifactId>
  861. <version>5.1.3</version>
  862. </dependency>
  863. <dependency>
  864. <groupId>xpp3</groupId>
  865. <artifactId>xpp3_min</artifactId>
  866. <version>1.1.4c</version>
  867. </dependency>
  868. <dependency>
  869. <groupId>com.thoughtworks.xstream</groupId>
  870. <artifactId>xstream</artifactId>
  871. <version>1.4</version>
  872. </dependency>
  873. <dependency>
  874. <groupId>org.apache.velocity</groupId>
  875. <artifactId>velocity-engine-core</artifactId>
  876. <version>2.0</version>
  877. </dependency>
  878. <dependency>
  879. <groupId>org.apache.velocity</groupId>
  880. <artifactId>velocity-tools</artifactId>
  881. <version>2.0</version>
  882. </dependency>
  883. <dependency>
  884. <groupId>com.fasterxml.uuid</groupId>
  885. <artifactId>java-uuid-generator</artifactId>
  886. <version>3.1.3</version>
  887. </dependency>
  888. <dependency>
  889. <groupId>com.baidu</groupId>
  890. <artifactId>ueditor</artifactId>
  891. <version>1.1.2</version>
  892. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/ueditor-1.1.2.jar</systemPath>
  893. </dependency>
  894. </dependencies>
  895. </project>