pom.xml 32 KB

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