pom.xml 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953
  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</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-spring</artifactId>
  416. <version>${activiti.version}</version>
  417. </dependency>
  418. <dependency>
  419. <groupId>org.activiti</groupId>
  420. <artifactId>activiti-explorer</artifactId>
  421. <version>${activiti.version}</version>
  422. <exclusions>
  423. <exclusion>
  424. <artifactId>vaadin</artifactId>
  425. <groupId>com.vaadin</groupId>
  426. </exclusion>
  427. <exclusion>
  428. <artifactId>dcharts-widget</artifactId>
  429. <groupId>org.vaadin.addons</groupId>
  430. </exclusion>
  431. <exclusion>
  432. <artifactId>activiti-simple-workflow</artifactId>
  433. <groupId>org.activiti</groupId>
  434. </exclusion>
  435. </exclusions>
  436. </dependency>
  437. <dependency>
  438. <groupId>org.activiti</groupId>
  439. <artifactId>activiti-modeler</artifactId>
  440. <version>${activiti.version}</version>
  441. </dependency>
  442. <dependency>
  443. <groupId>org.activiti</groupId>
  444. <artifactId>activiti-rest</artifactId>
  445. <version>${activiti.version}</version>
  446. </dependency>
  447. <dependency>
  448. <groupId>org.activiti</groupId>
  449. <artifactId>activiti-diagram-rest</artifactId>
  450. <version>${activiti.version}</version>
  451. </dependency>
  452. <dependency>
  453. <groupId>org.activiti</groupId>
  454. <artifactId>activiti-json-converter</artifactId>
  455. <version>${activiti.version}</version>
  456. </dependency>
  457. <dependency>
  458. <groupId>org.activiti</groupId>
  459. <artifactId>activiti-cxf</artifactId>
  460. <version>${activiti.version}</version>
  461. </dependency>
  462. <dependency>
  463. <groupId>xerces</groupId>
  464. <artifactId>xercesImpl</artifactId>
  465. <version>2.11.0</version>
  466. </dependency>
  467. <dependency>
  468. <groupId>org.apache.cxf</groupId>
  469. <artifactId>cxf-api</artifactId>
  470. <version>2.7.6</version>
  471. </dependency>
  472. <dependency>
  473. <groupId>org.apache.cxf</groupId>
  474. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  475. <version>2.7.6</version>
  476. </dependency>
  477. <dependency>
  478. <groupId>org.apache.cxf</groupId>
  479. <artifactId>cxf-rt-transports-http-jetty</artifactId>
  480. <version>2.7.6</version>
  481. <scope>test</scope>
  482. </dependency>
  483. <dependency>
  484. <groupId>org.apache.cxf</groupId>
  485. <artifactId>cxf-rt-transports-http</artifactId>
  486. <version>2.7.6</version>
  487. </dependency>
  488. <dependency>
  489. <groupId>com.sun.xml.bind</groupId>
  490. <artifactId>jaxb-impl</artifactId>
  491. <version>2.2.11</version>
  492. </dependency>
  493. <!-- LOGGING begin -->
  494. <dependency>
  495. <groupId>org.slf4j</groupId>
  496. <artifactId>slf4j-api</artifactId>
  497. <version>${slf4j.version}</version>
  498. </dependency>
  499. <dependency>
  500. <groupId>org.slf4j</groupId>
  501. <artifactId>slf4j-log4j12</artifactId>
  502. <version>${slf4j.version}</version>
  503. </dependency>
  504. <!-- common-logging 实际调用slf4j -->
  505. <dependency>
  506. <groupId>org.slf4j</groupId>
  507. <artifactId>jcl-over-slf4j</artifactId>
  508. <version>${slf4j.version}</version>
  509. </dependency>
  510. <!-- java.util.logging 实际调用slf4j -->
  511. <dependency>
  512. <groupId>org.slf4j</groupId>
  513. <artifactId>jul-to-slf4j</artifactId>
  514. <version>${slf4j.version}</version>
  515. </dependency>
  516. <dependency>
  517. <groupId>log4j</groupId>
  518. <artifactId>log4j</artifactId>
  519. <version>${log4j.version}</version>
  520. </dependency>
  521. <!-- LOGGING end -->
  522. <!-- GENERAL UTILS begin -->
  523. <dependency>
  524. <groupId>commons-io</groupId>
  525. <artifactId>commons-io</artifactId>
  526. <version>${commons-io.version}</version>
  527. </dependency>
  528. <dependency>
  529. <groupId>commons-codec</groupId>
  530. <artifactId>commons-codec</artifactId>
  531. <version>${commons-codec.version}</version>
  532. </dependency>
  533. <dependency>
  534. <groupId>commons-fileupload</groupId>
  535. <artifactId>commons-fileupload</artifactId>
  536. <version>${commons-fileupload.version}</version>
  537. </dependency>
  538. <dependency>
  539. <groupId>commons-beanutils</groupId>
  540. <artifactId>commons-beanutils</artifactId>
  541. <version>${commons-beanutils.version}</version>
  542. <exclusions>
  543. <exclusion>
  544. <groupId>commons-logging</groupId>
  545. <artifactId>commons-logging</artifactId>
  546. </exclusion>
  547. </exclusions>
  548. </dependency>
  549. <dependency>
  550. <groupId>org.apache.commons</groupId>
  551. <artifactId>commons-text</artifactId>
  552. <version>${commons-text.version}</version>
  553. </dependency>
  554. <dependency>
  555. <groupId>org.apache.commons</groupId>
  556. <artifactId>commons-collections4</artifactId>
  557. <version>${commons-collections.version}</version>
  558. </dependency>
  559. <!-- jackson json -->
  560. <dependency>
  561. <groupId>com.fasterxml.jackson.core</groupId>
  562. <artifactId>jackson-core</artifactId>
  563. <version>${jackson.version}</version>
  564. </dependency>
  565. <dependency>
  566. <groupId>com.fasterxml.jackson.core</groupId>
  567. <artifactId>jackson-databind</artifactId>
  568. <version>${jackson.version}</version>
  569. </dependency>
  570. <dependency>
  571. <groupId>com.fasterxml.jackson.core</groupId>
  572. <artifactId>jackson-annotations</artifactId>
  573. <version>${jackson.version}</version>
  574. </dependency>
  575. <dependency>
  576. <groupId>com.fasterxml.jackson.module</groupId>
  577. <artifactId>jackson-module-jaxb-annotations</artifactId>
  578. <version>${jackson.version}</version>
  579. </dependency>
  580. <!-- fastjson json-->
  581. <dependency>
  582. <groupId>com.alibaba</groupId>
  583. <artifactId>fastjson</artifactId>
  584. <version>${fastjson.version}</version>
  585. </dependency>
  586. <!-- xstream xml -->
  587. <dependency>
  588. <groupId>com.thoughtworks.xstream</groupId>
  589. <artifactId>xstream</artifactId>
  590. <version>${xstream.version}</version>
  591. </dependency>
  592. <!-- pojo copy -->
  593. <dependency>
  594. <groupId>net.sf.dozer</groupId>
  595. <artifactId>dozer</artifactId>
  596. <version>${dozer.version}</version>
  597. </dependency>
  598. <!-- template engine -->
  599. <dependency>
  600. <groupId>org.freemarker</groupId>
  601. <artifactId>freemarker</artifactId>
  602. <version>${freemarker.version}</version>
  603. </dependency>
  604. <dependency>
  605. <groupId>com.ibeetl</groupId>
  606. <artifactId>beetl</artifactId>
  607. <version>2.7.5</version>
  608. </dependency>
  609. <!-- email -->
  610. <dependency>
  611. <groupId>javax.mail</groupId>
  612. <artifactId>mail</artifactId>
  613. <version>1.4.7</version>
  614. </dependency>
  615. <dependency>
  616. <groupId>javax.activation</groupId>
  617. <artifactId>activation</artifactId>
  618. <version>1.1.1</version>
  619. </dependency>
  620. <!-- poi office -->
  621. <dependency>
  622. <groupId>org.apache.poi</groupId>
  623. <artifactId>poi</artifactId>
  624. <version>${poi.version}</version>
  625. </dependency>
  626. <dependency>
  627. <groupId>org.apache.poi</groupId>
  628. <artifactId>poi-ooxml</artifactId>
  629. <version>${poi.version}</version>
  630. </dependency>
  631. <dependency>
  632. <groupId>org.apache.poi</groupId>
  633. <artifactId>poi-ooxml-schemas</artifactId>
  634. <version>${poi.version}</version>
  635. </dependency>
  636. <!-- image util -->
  637. <dependency>
  638. <groupId>com.drewnoakes</groupId>
  639. <artifactId>metadata-extractor</artifactId>
  640. <version>2.6.2</version>
  641. </dependency>
  642. <!-- 条形码、二维码生成 -->
  643. <dependency>
  644. <groupId>com.google.zxing</groupId>
  645. <artifactId>core</artifactId>
  646. <version>3.3.0</version>
  647. </dependency>
  648. <dependency>
  649. <groupId>batik</groupId>
  650. <artifactId>batik-util</artifactId>
  651. <version>1.6-1</version>
  652. </dependency>
  653. <!-- quartz -->
  654. <dependency>
  655. <groupId>org.quartz-scheduler</groupId>
  656. <artifactId>quartz</artifactId>
  657. <version>${quartz.version}</version>
  658. </dependency>
  659. <dependency>
  660. <groupId>org.quartz-scheduler</groupId>
  661. <artifactId>quartz-jobs</artifactId>
  662. <version>${quartz.version}</version>
  663. </dependency>
  664. <!--&lt;!&ndash; 中文分词 &ndash;&gt;-->
  665. <!--<dependency>-->
  666. <!--<groupId>org.wltea</groupId>-->
  667. <!--<artifactId>analyzer</artifactId>-->
  668. <!--<version>2012_u6</version>-->
  669. <!--</dependency>-->
  670. <!-- GENERAL UTILS end -->
  671. <!-- sigar -->
  672. <!-- https://mvnrepository.com/artifact/org.fusesource/sigar -->
  673. <dependency>
  674. <groupId>org.fusesource</groupId>
  675. <artifactId>sigar</artifactId>
  676. <version>1.6.4</version>
  677. </dependency>
  678. <!-- CKFinder begin -->
  679. <dependency>
  680. <groupId>net.coobird</groupId>
  681. <artifactId>thumbnailator</artifactId>
  682. <version>0.4.2</version>
  683. </dependency>
  684. <!--<dependency>-->
  685. <!--<groupId>com.ckfinder</groupId>-->
  686. <!--<artifactId>apache-ant-zip</artifactId>-->
  687. <!--<version>${ckfinder.version}</version>-->
  688. <!--</dependency>-->
  689. <!--<dependency>-->
  690. <!--<groupId>com.ckfinder</groupId>-->
  691. <!--<artifactId>ckfinder</artifactId>-->
  692. <!--<version>${ckfinder.version}</version>-->
  693. <!--</dependency>-->
  694. <!--<dependency>-->
  695. <!--<groupId>com.ckfinder</groupId>-->
  696. <!--<artifactId>ckfinderplugin-fileeditor</artifactId>-->
  697. <!--<version>${ckfinder.version}</version>-->
  698. <!--</dependency>-->
  699. <!--<dependency>-->
  700. <!--<groupId>com.ckfinder</groupId>-->
  701. <!--<artifactId>ckfinderplugin-imageresize</artifactId>-->
  702. <!--<version>${ckfinder.version}</version>-->
  703. <!--</dependency>-->
  704. <!-- CKFinder end -->
  705. <!-- Echarts图表依赖包开始 -->
  706. <!-- https://mvnrepository.com/artifact/com.github.abel533/ECharts -->
  707. <dependency>
  708. <groupId>com.github.abel533</groupId>
  709. <artifactId>ECharts</artifactId>
  710. <version>3.0.0.2</version>
  711. </dependency>
  712. <dependency>
  713. <groupId>com.google.code.gson</groupId>
  714. <artifactId>gson</artifactId>
  715. <version>2.6.2</version>
  716. </dependency>
  717. <!-- Echarts图表依赖包结束 -->
  718. <!-- TEST begin -->
  719. <dependency>
  720. <groupId>junit</groupId>
  721. <artifactId>junit</artifactId>
  722. <version>4.12</version>
  723. </dependency>
  724. <dependency>
  725. <groupId>org.springframework</groupId>
  726. <artifactId>spring-test</artifactId>
  727. <version>${spring.version}</version>
  728. </dependency>
  729. <!-- TEST end -->
  730. <dependency>
  731. <groupId>eu.bitwalker</groupId>
  732. <artifactId>UserAgentUtils</artifactId>
  733. <version>1.20</version>
  734. </dependency>
  735. <!--httpcore -->
  736. <dependency>
  737. <groupId>org.apache.httpcomponents</groupId>
  738. <artifactId>httpcore</artifactId>
  739. <version>4.4.4</version>
  740. </dependency>
  741. <!-- swagger-springmvc -->
  742. <dependency>
  743. <groupId>io.springfox</groupId>
  744. <artifactId>springfox-swagger2</artifactId>
  745. <version>2.7.0</version>
  746. </dependency>
  747. <dependency>
  748. <groupId>io.springfox</groupId>
  749. <artifactId>springfox-swagger-ui</artifactId>
  750. <version>2.7.0</version>
  751. </dependency>
  752. <!-- swagger-springmvc -->
  753. <!--httpclient -->
  754. <dependency>
  755. <groupId>org.apache.httpcomponents</groupId>
  756. <artifactId>httpclient</artifactId>
  757. <version>4.5.2</version>
  758. </dependency>
  759. <!-- UTILS begin -->
  760. <dependency>
  761. <groupId>com.google.guava</groupId>
  762. <artifactId>guava</artifactId>
  763. <version>${guava.version}</version>
  764. </dependency>
  765. <dependency>
  766. <groupId>org.apache.commons</groupId>
  767. <artifactId>commons-lang3</artifactId>
  768. <version>${commons-lang3.version}</version>
  769. </dependency>
  770. <!-- UTILS end -->
  771. <dependency>
  772. <groupId>com.aliyun</groupId>
  773. <artifactId>aliyun-java-sdk-core</artifactId>
  774. <version>3.2.2</version>
  775. </dependency>
  776. <dependency>
  777. <groupId>com.aliyun</groupId>
  778. <artifactId>aliyun-java-sdk-vod</artifactId>
  779. <version>2.2.0</version>
  780. </dependency>
  781. <dependency>
  782. <groupId>com.aliyun.oss</groupId>
  783. <artifactId>aliyun-sdk-oss</artifactId>
  784. <version>2.0.6</version>
  785. </dependency>
  786. <dependency>
  787. <groupId>aopalliance</groupId>
  788. <artifactId>aopalliance</artifactId>
  789. <version>1.0</version>
  790. </dependency>
  791. <dependency>
  792. <groupId>dom4j</groupId>
  793. <artifactId>dom4j</artifactId>
  794. <version>1.6.1</version>
  795. </dependency>
  796. <dependency>
  797. <groupId>net.sf.ezmorph</groupId>
  798. <artifactId>ezmorph</artifactId>
  799. <version>1.0.6</version>
  800. </dependency>
  801. <dependency>
  802. <groupId>org.jboss.logging</groupId>
  803. <artifactId>jboss-logging</artifactId>
  804. <version>3.3.0.Final</version>
  805. </dependency>
  806. <dependency>
  807. <groupId>org.jboss</groupId>
  808. <artifactId>jboss-vfs</artifactId>
  809. <version>3.2.12.Final</version>
  810. </dependency>
  811. <dependency>
  812. <groupId>org.jdom</groupId>
  813. <artifactId>jdom</artifactId>
  814. <version>1.1</version>
  815. </dependency>
  816. <dependency>
  817. <groupId>org.codehaus.jettison</groupId>
  818. <artifactId>jettison</artifactId>
  819. <version>1.1</version>
  820. </dependency>
  821. <dependency>
  822. <groupId>net.sf.json-lib</groupId>
  823. <artifactId>json-lib</artifactId>
  824. <version>2.4</version>
  825. </dependency>
  826. <dependency>
  827. <groupId>org.json</groupId>
  828. <artifactId>json</artifactId>
  829. <version>20160810</version>
  830. </dependency>
  831. <dependency>
  832. <groupId>com.drewnoakes</groupId>
  833. <artifactId>metadata-extractor</artifactId>
  834. <version>2.10.1</version>
  835. </dependency>
  836. <dependency>
  837. <groupId>net.coobird</groupId>
  838. <artifactId>thumbnailator</artifactId>
  839. <version>0.4.8</version>
  840. </dependency>
  841. <dependency>
  842. <groupId>com.adobe.xmp</groupId>
  843. <artifactId>xmpcore</artifactId>
  844. <version>5.1.3</version>
  845. </dependency>
  846. <dependency>
  847. <groupId>xpp3</groupId>
  848. <artifactId>xpp3_min</artifactId>
  849. <version>1.1.4c</version>
  850. </dependency>
  851. <dependency>
  852. <groupId>com.thoughtworks.xstream</groupId>
  853. <artifactId>xstream</artifactId>
  854. <version>1.4</version>
  855. </dependency>
  856. <dependency>
  857. <groupId>org.apache.velocity</groupId>
  858. <artifactId>velocity-engine-core</artifactId>
  859. <version>2.0</version>
  860. </dependency>
  861. <dependency>
  862. <groupId>org.apache.velocity</groupId>
  863. <artifactId>velocity-tools</artifactId>
  864. <version>2.0</version>
  865. </dependency>
  866. <dependency>
  867. <groupId>com.fasterxml.uuid</groupId>
  868. <artifactId>java-uuid-generator</artifactId>
  869. <version>3.1.3</version>
  870. </dependency>
  871. <dependency>
  872. <groupId>com.baidu</groupId>
  873. <artifactId>ueditor</artifactId>
  874. <version>1.1.2</version>
  875. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/ueditor-1.1.2.jar</systemPath>
  876. </dependency>
  877. </dependencies>
  878. </project>