pom.xml 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812
  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.happyjob</groupId>
  7. <artifactId>happyjob-parent</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <modules>
  10. <module>happy-job-base-common</module>
  11. <module>happy-job-base-system</module>
  12. <module>happy-job-module-hpjob</module>
  13. <module>happy-job-module-crm</module>
  14. <module>happy-job-module-hppay</module>
  15. <module>happy-job-module-hpvip</module>
  16. </modules>
  17. <packaging>pom</packaging>
  18. <!-- 项目属性 -->
  19. <properties>
  20. <!-- main version setting -->
  21. <spring.version>4.3.5.RELEASE</spring.version>
  22. <validator.version>5.4.0.Final</validator.version>
  23. <mybatis.version>3.2.8</mybatis.version>
  24. <mybatis-spring.version>1.2.2</mybatis-spring.version>
  25. <druid.version>1.0.11</druid.version>
  26. <ehcache.version>2.6.11</ehcache.version>
  27. <ehcache-web.version>2.0.4</ehcache-web.version>
  28. <shiro.version>1.4.0-RC2</shiro.version>
  29. <sitemesh.version>2.4.2</sitemesh.version>
  30. <activiti.version>5.21.0</activiti.version>
  31. <!-- tools version setting -->
  32. <slf4j.version>1.7.25</slf4j.version>
  33. <commons-io.version>2.4</commons-io.version>
  34. <commons-codec.version>1.9</commons-codec.version>
  35. <commons-fileupload.version>1.3.1</commons-fileupload.version>
  36. <commons-beanutils.version>1.9.1</commons-beanutils.version>
  37. <jackson.version>2.8.6</jackson.version>
  38. <fastjson.version>1.2.45</fastjson.version>
  39. <xstream.version>1.4.9</xstream.version>
  40. <dozer.version>5.5.1</dozer.version>
  41. <poi.version>3.9</poi.version>
  42. <freemarker.version>2.3.25-incubating</freemarker.version>
  43. <quartz.version>2.2.3</quartz.version>
  44. <guava.version>20.0</guava.version>
  45. <commons-lang.version>2.5</commons-lang.version>
  46. <commons-lang3.version>3.5</commons-lang3.version>
  47. <bouncycastle.version>1.56</bouncycastle.version>
  48. <!-- jdbc driver setting -->
  49. <mysql.driver.version>5.1.30</mysql.driver.version>
  50. <oracle.driver.version>10.2.0.4.0</oracle.driver.version>
  51. <mssql.driver.version>1.3.1</mssql.driver.version>
  52. <okhttp-version>3.11.0</okhttp-version>
  53. <!-- environment setting -->
  54. <jdk.version>1.8</jdk.version>
  55. <tomcat.version>2.2</tomcat.version>
  56. <jetty.version>7.6.14.v20131031</jetty.version>
  57. <webserver.port>8081</webserver.port>
  58. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  59. <downloadSources>true</downloadSources>
  60. <tencent.cloud.version>3.1.613</tencent.cloud.version>
  61. </properties>
  62. <!-- 设定仓库 -->
  63. <repositories>
  64. <repository>
  65. <id>central-repos</id>
  66. <name>Central Repository</name>
  67. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  68. <releases>
  69. <enabled>true</enabled>
  70. </releases>
  71. <snapshots>
  72. <enabled>false</enabled>
  73. </snapshots>
  74. </repository>
  75. <repository>
  76. <id>central-repos2</id>
  77. <name>Central Repository 2</name>
  78. <url>http://mvnrepo.code.taobao.org/nexus/content/repositories/snapshots/</url>
  79. <releases>
  80. <enabled>true</enabled>
  81. </releases>
  82. <snapshots>
  83. <enabled>false</enabled>
  84. </snapshots>
  85. </repository>
  86. <repository>
  87. <id>springsource-repos</id>
  88. <name>SpringSource Repository</name>
  89. <url>http://mvnrepo.code.taobao.org/nexus/content/repositories/releases/</url>
  90. <releases>
  91. <enabled>true</enabled>
  92. </releases>
  93. <snapshots>
  94. <enabled>false</enabled>
  95. </snapshots>
  96. </repository>
  97. <repository>
  98. <id>bitwalker.user-agent-utils.mvn.repo</id>
  99. <url>https://nexus.jackpinetech.com/nexus/content/groups/public</url>
  100. <!-- use snapshot version -->
  101. <snapshots>
  102. <updatePolicy>always</updatePolicy>
  103. </snapshots>
  104. </repository>
  105. </repositories>
  106. <build>
  107. <plugins>
  108. <!-- tomcat6插件 -->
  109. <plugin>
  110. <groupId>org.apache.tomcat.maven</groupId>
  111. <artifactId>tomcat6-maven-plugin</artifactId>
  112. <version>${tomcat.version}</version>
  113. <configuration>
  114. <port>${webserver.port}</port>
  115. <path>/${project.artifactId}</path>
  116. <uriEncoding>${project.build.sourceEncoding}</uriEncoding>
  117. </configuration>
  118. </plugin>
  119. <!-- tomcat7插件 -->
  120. <plugin>
  121. <groupId>org.apache.tomcat.maven</groupId>
  122. <artifactId>tomcat7-maven-plugin</artifactId>
  123. <version>${tomcat.version}</version>
  124. <configuration>
  125. <port>${webserver.port}</port>
  126. <path>/${project.artifactId}</path>
  127. <uriEncoding>${project.build.sourceEncoding}</uriEncoding>
  128. </configuration>
  129. </plugin>
  130. <plugin>
  131. <groupId>org.apache.maven.plugins</groupId>
  132. <artifactId>maven-compiler-plugin</artifactId>
  133. <version>3.3</version>
  134. <configuration>
  135. <source>1.8</source>
  136. <target>1.8</target>
  137. </configuration>
  138. </plugin>
  139. <plugin>
  140. <groupId>org.mortbay.jetty</groupId>
  141. <artifactId>jetty-maven-plugin</artifactId>
  142. <version>${jetty.version}</version>
  143. <configuration>
  144. <connectors>
  145. <connector
  146. implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
  147. <port>${webserver.port}</port>
  148. </connector>
  149. </connectors>
  150. <webAppConfig>
  151. <contextPath>/${project.artifactId}</contextPath>
  152. </webAppConfig>
  153. <systemProperties>
  154. <systemProperty>
  155. <name>org.mortbay.util.URI.charset</name>
  156. <value>${project.build.sourceEncoding}</value>
  157. </systemProperty>
  158. </systemProperties>
  159. </configuration>
  160. </plugin>
  161. </plugins>
  162. </build>
  163. <!-- 依赖项定义 -->
  164. <dependencies>
  165. <!-- SPRING begin -->
  166. <dependency>
  167. <groupId>org.springframework</groupId>
  168. <artifactId>spring-core</artifactId>
  169. <version>${spring.version}</version>
  170. <exclusions>
  171. <exclusion>
  172. <groupId>commons-logging</groupId>
  173. <artifactId>commons-logging</artifactId>
  174. </exclusion>
  175. </exclusions>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.springframework</groupId>
  179. <artifactId>spring-beans</artifactId>
  180. <version>${spring.version}</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.springframework</groupId>
  184. <artifactId>spring-context</artifactId>
  185. <version>${spring.version}</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.springframework</groupId>
  189. <artifactId>spring-context-support</artifactId>
  190. <version>${spring.version}</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.springframework</groupId>
  194. <artifactId>spring-aop</artifactId>
  195. <version>${spring.version}</version>
  196. <exclusions>
  197. <exclusion>
  198. <groupId>commons-logging</groupId>
  199. <artifactId>commons-logging</artifactId>
  200. </exclusion>
  201. </exclusions>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.springframework</groupId>
  205. <artifactId>spring-tx</artifactId>
  206. <version>${spring.version}</version>
  207. </dependency>
  208. <!-- spring orm -->
  209. <dependency>
  210. <groupId>org.springframework</groupId>
  211. <artifactId>spring-orm</artifactId>
  212. <version>${spring.version}</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.springframework</groupId>
  216. <artifactId>spring-jdbc</artifactId>
  217. <version>${spring.version}</version>
  218. </dependency>
  219. <!-- spring websocket-->
  220. <dependency>
  221. <groupId>org.springframework</groupId>
  222. <artifactId>spring-websocket</artifactId>
  223. <version>${spring.version}</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.springframework</groupId>
  227. <artifactId>spring-messaging</artifactId>
  228. <version>${spring.version}</version>
  229. </dependency>
  230. <!-- bean validate -->
  231. <dependency>
  232. <groupId>org.hibernate</groupId>
  233. <artifactId>hibernate-validator</artifactId>
  234. <version>${validator.version}</version>
  235. </dependency>
  236. <!-- SPRING end -->
  237. <!-- AOP begin -->
  238. <dependency>
  239. <groupId>org.aspectj</groupId>
  240. <artifactId>aspectjrt</artifactId>
  241. <version>1.7.4</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>org.aspectj</groupId>
  245. <artifactId>aspectjweaver</artifactId>
  246. <version>1.7.4</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>cglib</groupId>
  250. <artifactId>cglib</artifactId>
  251. <version>3.1</version>
  252. </dependency>
  253. <!-- AOP end -->
  254. <!-- PERSISTENCE begin -->
  255. <!-- MyBatis -->
  256. <dependency>
  257. <groupId>org.mybatis</groupId>
  258. <artifactId>mybatis</artifactId>
  259. <version>${mybatis.version}</version>
  260. </dependency>
  261. <dependency>
  262. <groupId>org.mybatis</groupId>
  263. <artifactId>mybatis-spring</artifactId>
  264. <version>${mybatis-spring.version}</version>
  265. </dependency>
  266. <!-- connection pool -->
  267. <dependency>
  268. <groupId>com.alibaba</groupId>
  269. <artifactId>druid</artifactId>
  270. <version>${druid.version}</version>
  271. </dependency>
  272. <!-- jdbc driver -->
  273. <dependency>
  274. <groupId>mysql</groupId>
  275. <artifactId>mysql-connector-java</artifactId>
  276. <version>${mysql.driver.version}</version>
  277. </dependency>
  278. <dependency>
  279. <groupId>net.sourceforge.jtds</groupId>
  280. <artifactId>jtds</artifactId>
  281. <version>${mssql.driver.version}</version>
  282. </dependency>
  283. <!-- PERSISTENCE end -->
  284. <!-- WEB begin -->
  285. <dependency>
  286. <groupId>org.springframework</groupId>
  287. <artifactId>spring-web</artifactId>
  288. <version>${spring.version}</version>
  289. </dependency>
  290. <dependency>
  291. <groupId>org.springframework</groupId>
  292. <artifactId>spring-webmvc</artifactId>
  293. <version>${spring.version}</version>
  294. </dependency>
  295. <dependency>
  296. <groupId>org.springframework</groupId>
  297. <artifactId>spring-oxm</artifactId>
  298. <version>${spring.version}</version>
  299. </dependency>
  300. <dependency>
  301. <groupId>opensymphony</groupId>
  302. <artifactId>sitemesh</artifactId>
  303. <version>${sitemesh.version}</version>
  304. </dependency>
  305. <dependency>
  306. <groupId>taglibs</groupId>
  307. <artifactId>standard</artifactId>
  308. <version>1.1.2</version>
  309. <type>jar</type>
  310. </dependency>
  311. <dependency>
  312. <groupId>javax</groupId>
  313. <artifactId>javaee-api</artifactId>
  314. <version>7.0</version>
  315. <scope>provided</scope>
  316. </dependency>
  317. <dependency>
  318. <groupId>javax.servlet</groupId>
  319. <artifactId>jstl</artifactId>
  320. <version>1.2</version>
  321. <type>jar</type>
  322. </dependency>
  323. <dependency>
  324. <groupId>javax.servlet</groupId>
  325. <artifactId>servlet-api</artifactId>
  326. <version>2.5</version>
  327. <scope>provided</scope>
  328. </dependency>
  329. <dependency>
  330. <groupId>javax.servlet.jsp</groupId>
  331. <artifactId>jsp-api</artifactId>
  332. <version>2.1</version>
  333. <scope>provided</scope>
  334. </dependency>
  335. <!-- <dependency>
  336. <groupId>javax.servlet</groupId>
  337. <artifactId>javax.servlet-api</artifactId>
  338. <version>3.0.1</version>
  339. <scope>provided</scope>
  340. </dependency>
  341. <dependency>
  342. <groupId>javax.servlet.jsp</groupId>
  343. <artifactId>jsp-api</artifactId>
  344. <version>2.2</version>
  345. <scope>provided</scope>
  346. </dependency>-->
  347. <!-- J2CACHE begin -->
  348. <dependency>
  349. <groupId>com.github.ben-manes.caffeine</groupId>
  350. <artifactId>caffeine</artifactId>
  351. <version>2.6.1</version>
  352. </dependency>
  353. <dependency>
  354. <groupId>net.sf.ehcache</groupId>
  355. <artifactId>ehcache</artifactId>
  356. <version>2.10.4</version>
  357. </dependency>
  358. <dependency>
  359. <groupId>org.ehcache</groupId>
  360. <artifactId>ehcache</artifactId>
  361. <version>3.4.0</version>
  362. </dependency>
  363. <dependency>
  364. <groupId>redis.clients</groupId>
  365. <artifactId>jedis</artifactId>
  366. <version>2.9.0</version>
  367. </dependency>
  368. <dependency>
  369. <groupId>org.jgroups</groupId>
  370. <artifactId>jgroups</artifactId>
  371. <version>3.6.13.Final</version>
  372. </dependency>
  373. <dependency>
  374. <groupId>de.ruedigermoeller</groupId>
  375. <artifactId>fst</artifactId>
  376. <version>2.57</version>
  377. </dependency>
  378. <dependency>
  379. <groupId>com.esotericsoftware</groupId>
  380. <artifactId>kryo-shaded</artifactId>
  381. <version>3.0.0</version>
  382. </dependency>
  383. <dependency>
  384. <groupId>org.xerial.snappy</groupId>
  385. <artifactId>snappy-java</artifactId>
  386. <version>1.1.7.1</version>
  387. </dependency>
  388. <dependency>
  389. <groupId>jline</groupId>
  390. <artifactId>jline</artifactId>
  391. <version>2.14.2</version>
  392. </dependency>
  393. <!-- J2CACHE end -->
  394. <!-- SECURITY begin -->
  395. <dependency>
  396. <groupId>org.apache.shiro</groupId>
  397. <artifactId>shiro-core</artifactId>
  398. <version>${shiro.version}</version>
  399. </dependency>
  400. <dependency>
  401. <groupId>org.apache.shiro</groupId>
  402. <artifactId>shiro-spring</artifactId>
  403. <version>${shiro.version}</version>
  404. </dependency>
  405. <dependency>
  406. <groupId>org.apache.shiro</groupId>
  407. <artifactId>shiro-cas</artifactId>
  408. <version>${shiro.version}</version>
  409. <exclusions>
  410. <exclusion>
  411. <groupId>commons-logging</groupId>
  412. <artifactId>commons-logging</artifactId>
  413. </exclusion>
  414. </exclusions>
  415. </dependency>
  416. <dependency>
  417. <groupId>org.apache.shiro</groupId>
  418. <artifactId>shiro-web</artifactId>
  419. <version>${shiro.version}</version>
  420. </dependency>
  421. <dependency>
  422. <groupId>org.apache.shiro</groupId>
  423. <artifactId>shiro-ehcache</artifactId>
  424. <version>${shiro.version}</version>
  425. </dependency>
  426. <!-- SECURITY end -->
  427. <!-- Activiti -->
  428. <dependency>
  429. <groupId>org.activiti</groupId>
  430. <artifactId>activiti-engine</artifactId>
  431. <version>${activiti.version}</version>
  432. </dependency>
  433. <dependency>
  434. <groupId>org.activiti</groupId>
  435. <artifactId>activiti-spring</artifactId>
  436. <version>${activiti.version}</version>
  437. </dependency>
  438. <dependency>
  439. <groupId>org.activiti</groupId>
  440. <artifactId>activiti-explorer</artifactId>
  441. <version>${activiti.version}</version>
  442. <exclusions>
  443. <exclusion>
  444. <artifactId>vaadin</artifactId>
  445. <groupId>com.vaadin</groupId>
  446. </exclusion>
  447. <exclusion>
  448. <artifactId>dcharts-widget</artifactId>
  449. <groupId>org.vaadin.addons</groupId>
  450. </exclusion>
  451. <exclusion>
  452. <artifactId>activiti-simple-workflow</artifactId>
  453. <groupId>org.activiti</groupId>
  454. </exclusion>
  455. </exclusions>
  456. </dependency>
  457. <dependency>
  458. <groupId>org.activiti</groupId>
  459. <artifactId>activiti-modeler</artifactId>
  460. <version>${activiti.version}</version>
  461. </dependency>
  462. <dependency>
  463. <groupId>org.activiti</groupId>
  464. <artifactId>activiti-rest</artifactId>
  465. <version>${activiti.version}</version>
  466. </dependency>
  467. <dependency>
  468. <groupId>org.activiti</groupId>
  469. <artifactId>activiti-diagram-rest</artifactId>
  470. <version>${activiti.version}</version>
  471. </dependency>
  472. <!-- 支持activiti缓存 -->
  473. <!-- <dependency>
  474. <groupId>org.infinispan</groupId>
  475. <artifactId>infinispan-core</artifactId>
  476. <version>5.1.7.Final</version>
  477. </dependency> -->
  478. <!-- LOGGING begin -->
  479. <dependency>
  480. <groupId>org.slf4j</groupId>
  481. <artifactId>slf4j-api</artifactId>
  482. <version>${slf4j.version}</version>
  483. </dependency>
  484. <dependency>
  485. <groupId>org.slf4j</groupId>
  486. <artifactId>slf4j-log4j12</artifactId>
  487. <version>${slf4j.version}</version>
  488. </dependency>
  489. <dependency>
  490. <groupId>org.slf4j</groupId>
  491. <artifactId>slf4j-simple</artifactId>
  492. <version>${slf4j.version}</version>
  493. </dependency>
  494. <!-- common-logging 实际调用slf4j -->
  495. <dependency>
  496. <groupId>org.slf4j</groupId>
  497. <artifactId>jcl-over-slf4j</artifactId>
  498. <version>${slf4j.version}</version>
  499. </dependency>
  500. <!-- java.util.logging 实际调用slf4j -->
  501. <dependency>
  502. <groupId>org.slf4j</groupId>
  503. <artifactId>jul-to-slf4j</artifactId>
  504. <version>${slf4j.version}</version>
  505. </dependency>
  506. <!-- LOGGING end -->
  507. <!-- GENERAL UTILS begin -->
  508. <dependency>
  509. <groupId>commons-io</groupId>
  510. <artifactId>commons-io</artifactId>
  511. <version>${commons-io.version}</version>
  512. </dependency>
  513. <dependency>
  514. <groupId>commons-codec</groupId>
  515. <artifactId>commons-codec</artifactId>
  516. <version>${commons-codec.version}</version>
  517. </dependency>
  518. <dependency>
  519. <groupId>commons-fileupload</groupId>
  520. <artifactId>commons-fileupload</artifactId>
  521. <version>${commons-fileupload.version}</version>
  522. </dependency>
  523. <dependency>
  524. <groupId>commons-beanutils</groupId>
  525. <artifactId>commons-beanutils</artifactId>
  526. <version>${commons-beanutils.version}</version>
  527. <exclusions>
  528. <exclusion>
  529. <groupId>commons-logging</groupId>
  530. <artifactId>commons-logging</artifactId>
  531. </exclusion>
  532. </exclusions>
  533. </dependency>
  534. <dependency>
  535. <groupId>commons-dbcp</groupId>
  536. <artifactId>commons-dbcp</artifactId>
  537. <version>1.4</version>
  538. </dependency>
  539. <!-- jackson json -->
  540. <dependency>
  541. <groupId>com.fasterxml.jackson.core</groupId>
  542. <artifactId>jackson-core</artifactId>
  543. <version>${jackson.version}</version>
  544. </dependency>
  545. <dependency>
  546. <groupId>com.fasterxml.jackson.core</groupId>
  547. <artifactId>jackson-databind</artifactId>
  548. <version>${jackson.version}</version>
  549. </dependency>
  550. <dependency>
  551. <groupId>com.fasterxml.jackson.core</groupId>
  552. <artifactId>jackson-annotations</artifactId>
  553. <version>${jackson.version}</version>
  554. </dependency>
  555. <dependency>
  556. <groupId>com.fasterxml.jackson.module</groupId>
  557. <artifactId>jackson-module-jaxb-annotations</artifactId>
  558. <version>${jackson.version}</version>
  559. </dependency>
  560. <!-- fastjson json-->
  561. <dependency>
  562. <groupId>com.alibaba</groupId>
  563. <artifactId>fastjson</artifactId>
  564. <version>${fastjson.version}</version>
  565. </dependency>
  566. <!-- xstream xml -->
  567. <dependency>
  568. <groupId>com.thoughtworks.xstream</groupId>
  569. <artifactId>xstream</artifactId>
  570. <version>${xstream.version}</version>
  571. </dependency>
  572. <!-- pojo copy -->
  573. <dependency>
  574. <groupId>net.sf.dozer</groupId>
  575. <artifactId>dozer</artifactId>
  576. <version>${dozer.version}</version>
  577. </dependency>
  578. <!-- freemarker engine -->
  579. <dependency>
  580. <groupId>org.freemarker</groupId>
  581. <artifactId>freemarker</artifactId>
  582. <version>${freemarker.version}</version>
  583. </dependency>
  584. <!-- email -->
  585. <dependency>
  586. <groupId>javax.mail</groupId>
  587. <artifactId>mail</artifactId>
  588. <version>1.4.7</version>
  589. </dependency>
  590. <dependency>
  591. <groupId>javax.activation</groupId>
  592. <artifactId>activation</artifactId>
  593. <version>1.1.1</version>
  594. </dependency>
  595. <!-- poi office -->
  596. <dependency>
  597. <groupId>org.apache.poi</groupId>
  598. <artifactId>poi</artifactId>
  599. <version>${poi.version}</version>
  600. </dependency>
  601. <dependency>
  602. <groupId>org.apache.poi</groupId>
  603. <artifactId>poi-ooxml</artifactId>
  604. <version>${poi.version}</version>
  605. </dependency>
  606. <dependency>
  607. <groupId>org.apache.poi</groupId>
  608. <artifactId>poi-ooxml-schemas</artifactId>
  609. <version>${poi.version}</version>
  610. </dependency>
  611. <!-- image util -->
  612. <dependency>
  613. <groupId>com.drewnoakes</groupId>
  614. <artifactId>metadata-extractor</artifactId>
  615. <version>2.6.2</version>
  616. </dependency>
  617. <!-- 条形码、二维码生成 -->
  618. <dependency>
  619. <groupId>com.google.zxing</groupId>
  620. <artifactId>core</artifactId>
  621. <version>2.2</version>
  622. </dependency>
  623. <dependency>
  624. <groupId>com.google.zxing</groupId>
  625. <artifactId>javase</artifactId>
  626. <version>2.2</version>
  627. </dependency>
  628. <!-- quartz -->
  629. <dependency>
  630. <groupId>org.quartz-scheduler</groupId>
  631. <artifactId>quartz</artifactId>
  632. <version>${quartz.version}</version>
  633. </dependency>
  634. <dependency>
  635. <groupId>org.quartz-scheduler</groupId>
  636. <artifactId>quartz-jobs</artifactId>
  637. <version>${quartz.version}</version>
  638. </dependency>
  639. <!-- https://github.com/square/okhttp -->
  640. <dependency>
  641. <groupId>com.squareup.okhttp3</groupId>
  642. <artifactId>okhttp</artifactId>
  643. <version>${okhttp-version}</version>
  644. </dependency>
  645. <!-- GENERAL UTILS end -->
  646. <dependency>
  647. <groupId>org.bouncycastle</groupId>
  648. <artifactId>bcprov-jdk15on</artifactId>
  649. <version>${bouncycastle.version}</version>
  650. </dependency>
  651. <!-- Echarts图表依赖包开始 -->
  652. <!-- https://mvnrepository.com/artifact/com.github.abel533/ECharts -->
  653. <dependency>
  654. <groupId>com.github.abel533</groupId>
  655. <artifactId>ECharts</artifactId>
  656. <version>3.0.0.2</version>
  657. </dependency>
  658. <dependency>
  659. <groupId>com.google.code.gson</groupId>
  660. <artifactId>gson</artifactId>
  661. <version>2.6.2</version>
  662. </dependency>
  663. <!-- Echarts图表依赖包结束 -->
  664. <!-- TEST begin -->
  665. <dependency>
  666. <groupId>junit</groupId>
  667. <artifactId>junit</artifactId>
  668. <version>4.11</version>
  669. </dependency>
  670. <dependency>
  671. <groupId>org.springframework</groupId>
  672. <artifactId>spring-test</artifactId>
  673. <version>${spring.version}</version>
  674. </dependency>
  675. <!-- TEST end -->
  676. <dependency>
  677. <groupId>eu.bitwalker</groupId>
  678. <artifactId>UserAgentUtils</artifactId>
  679. <version>1.20</version>
  680. </dependency>
  681. <!--httpcore -->
  682. <dependency>
  683. <groupId>org.apache.httpcomponents</groupId>
  684. <artifactId>httpcore</artifactId>
  685. <version>4.4.4</version>
  686. </dependency>
  687. <!-- swagger-springmvc -->
  688. <dependency>
  689. <groupId>io.springfox</groupId>
  690. <artifactId>springfox-swagger2</artifactId>
  691. <version>2.5.0</version>
  692. </dependency>
  693. <dependency>
  694. <groupId>io.springfox</groupId>
  695. <artifactId>springfox-swagger-ui</artifactId>
  696. <version>2.5.0</version>
  697. </dependency>
  698. <!-- swagger-springmvc dependencies -->
  699. <!--httpclient -->
  700. <dependency>
  701. <groupId>org.apache.httpcomponents</groupId>
  702. <artifactId>httpclient</artifactId>
  703. <version>4.5.2</version>
  704. </dependency>
  705. <!-- UTILS begin -->
  706. <dependency>
  707. <groupId>com.google.guava</groupId>
  708. <artifactId>guava</artifactId>
  709. <version>${guava.version}</version>
  710. </dependency>
  711. <dependency>
  712. <groupId>net.sf.json-lib</groupId>
  713. <artifactId>json-lib</artifactId>
  714. <version>2.4</version>
  715. <classifier>jdk15</classifier>
  716. </dependency>
  717. <dependency>
  718. <groupId>org.apache.commons</groupId>
  719. <artifactId>commons-lang3</artifactId>
  720. <version>${commons-lang3.version}</version>
  721. </dependency>
  722. <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
  723. <dependency>
  724. <groupId>org.postgresql</groupId>
  725. <artifactId>postgresql</artifactId>
  726. <version>42.1.1</version>
  727. </dependency>
  728. <dependency>
  729. <groupId>com.aliyun.oss</groupId>
  730. <artifactId>aliyun-sdk-oss</artifactId>
  731. <version>2.6.0</version>
  732. </dependency>
  733. <dependency>
  734. <groupId>org.apache.ant</groupId>
  735. <artifactId>ant</artifactId>
  736. <version>1.8.1</version>
  737. </dependency>
  738. <!-- UTILS end -->
  739. <!--腾讯云sdk-->
  740. <dependency>
  741. <groupId>com.tencentcloudapi</groupId>
  742. <artifactId>tencentcloud-sdk-java</artifactId>
  743. <version>${tencent.cloud.version}</version>
  744. </dependency>
  745. </dependencies>
  746. </project>