pom.xml 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.py</groupId>
  6. <artifactId>oa</artifactId>
  7. <packaging>war</packaging>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <name>oa Maven Webapp</name>
  10. <url>http://maven.apache.org</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. </properties>
  15. <repositories>
  16. <repository>
  17. <id>aliyun</id>
  18. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  19. </repository>
  20. </repositories>
  21. <dependencies>
  22. <dependency>
  23. <groupId>aopalliance</groupId>
  24. <artifactId>aopalliance</artifactId>
  25. <version>1.0</version>
  26. <type>jar</type>
  27. <scope>compile</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>javax.servlet</groupId>
  31. <artifactId>jstl</artifactId>
  32. <version>1.2</version>
  33. <type>jar</type>
  34. <scope>compile</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>dom4j</groupId>
  38. <artifactId>dom4j</artifactId>
  39. <version>1.6.1</version>
  40. <type>jar</type>
  41. <scope>compile</scope>
  42. <exclusions>
  43. <exclusion>
  44. <artifactId>xml-apis</artifactId>
  45. <groupId>xml-apis</groupId>
  46. </exclusion>
  47. </exclusions>
  48. </dependency>
  49. <dependency>
  50. <groupId>net.sf.json-lib</groupId>
  51. <artifactId>json-lib</artifactId>
  52. <version>2.4</version>
  53. <classifier>jdk15</classifier>
  54. <exclusions>
  55. <exclusion>
  56. <artifactId>commons-logging</artifactId>
  57. <groupId>commons-logging</groupId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.alibaba</groupId>
  63. <artifactId>fastjson</artifactId>
  64. <version>1.2.47</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>log4j</groupId>
  68. <artifactId>log4j</artifactId>
  69. <version>1.2.17</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.belerweb</groupId>
  73. <artifactId>pinyin4j</artifactId>
  74. <version>2.5.0</version>
  75. <type>jar</type>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>javax.activation</groupId>
  80. <artifactId>activation</artifactId>
  81. <version>1.1.1</version>
  82. <type>jar</type>
  83. <scope>compile</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>net.sf.ezmorph</groupId>
  87. <artifactId>ezmorph</artifactId>
  88. <version>1.0.6</version>
  89. <type>jar</type>
  90. <scope>compile</scope>
  91. <exclusions>
  92. <exclusion>
  93. <artifactId>commons-lang</artifactId>
  94. <groupId>commons-lang</groupId>
  95. </exclusion>
  96. </exclusions>
  97. </dependency>
  98. <!-- <dependency>
  99. <groupId>com.artofsolving</groupId>
  100. <artifactId>jodconverter</artifactId>
  101. <version>2.2.1</version>
  102. <type>jar</type>
  103. <scope>compile</scope>
  104. </dependency> -->
  105. <dependency>
  106. <groupId>org.jodconverter</groupId>
  107. <artifactId>jodconverter-core</artifactId>
  108. <version>4.0.0-RELEASE</version>
  109. <exclusions>
  110. <exclusion>
  111. <artifactId>slf4j-api</artifactId>
  112. <groupId>org.slf4j</groupId>
  113. </exclusion>
  114. <exclusion>
  115. <artifactId>commons-io</artifactId>
  116. <groupId>commons-io</groupId>
  117. </exclusion>
  118. </exclusions>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.openoffice</groupId>
  122. <artifactId>juh</artifactId>
  123. <version>4.1.2</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.openoffice</groupId>
  127. <artifactId>jurt</artifactId>
  128. <version>4.1.2</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.openoffice</groupId>
  132. <artifactId>ridl</artifactId>
  133. <version>4.1.2</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.openoffice</groupId>
  137. <artifactId>unoil</artifactId>
  138. <version>4.1.2</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.thoughtworks.xstream</groupId>
  142. <artifactId>xstream</artifactId>
  143. <version>1.4.10</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>net.sf.ehcache</groupId>
  147. <artifactId>ehcache</artifactId>
  148. <version>2.9.1</version>
  149. <type>jar</type>
  150. <scope>compile</scope>
  151. <exclusions>
  152. <exclusion>
  153. <artifactId>slf4j-api</artifactId>
  154. <groupId>org.slf4j</groupId>
  155. </exclusion>
  156. </exclusions>
  157. </dependency>
  158. <dependency>
  159. <groupId>antlr</groupId>
  160. <artifactId>antlr</artifactId>
  161. <version>2.7.7</version>
  162. <type>jar</type>
  163. <scope>compile</scope>
  164. </dependency>
  165. <!--
  166. <dependency>
  167. <groupId>javax.mail</groupId>
  168. <artifactId>mail</artifactId>
  169. <version>1.4.7</version>
  170. <type>jar</type>
  171. <scope>compile</scope>
  172. </dependency>-->
  173. <dependency>
  174. <groupId>ognl</groupId>
  175. <artifactId>ognl</artifactId>
  176. <version>2.7.3</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>com.liferay</groupId>
  180. <artifactId>org.apache.commons.fileupload</artifactId>
  181. <version>1.2.2.LIFERAY-PATCHED-1</version>
  182. <type>jar</type>
  183. <scope>compile</scope>
  184. <exclusions>
  185. <exclusion>
  186. <artifactId>commons-io</artifactId>
  187. <groupId>commons-io</groupId>
  188. </exclusion>
  189. </exclusions>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.apache.poi</groupId>
  193. <artifactId>poi</artifactId>
  194. <version>3.9</version>
  195. <exclusions>
  196. <exclusion>
  197. <artifactId>commons-codec</artifactId>
  198. <groupId>commons-codec</groupId>
  199. </exclusion>
  200. </exclusions>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.apache.poi</groupId>
  204. <artifactId>poi-examples</artifactId>
  205. <version>3.9</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.apache.poi</groupId>
  209. <artifactId>poi-excelant</artifactId>
  210. <version>3.9</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.apache.poi</groupId>
  214. <artifactId>poi-ooxml</artifactId>
  215. <version>3.9</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.apache.poi</groupId>
  219. <artifactId>poi-ooxml-schemas</artifactId>
  220. <version>3.9</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>org.apache.poi</groupId>
  224. <artifactId>poi-scratchpad</artifactId>
  225. <version>3.9</version>
  226. </dependency>
  227. <dependency>
  228. <groupId>com.google.zxing</groupId>
  229. <artifactId>core</artifactId>
  230. <version>1.7</version>
  231. <type>jar</type>
  232. <scope>compile</scope>
  233. </dependency>
  234. <dependency>
  235. <groupId>com.google.zxing</groupId>
  236. <artifactId>javase</artifactId>
  237. <version>1.7</version>
  238. <type>jar</type>
  239. <scope>compile</scope>
  240. </dependency>
  241. <dependency>
  242. <groupId>org.eclipse.birt.runtime.3_7_1</groupId>
  243. <artifactId>org.apache.batik.transcoder</artifactId>
  244. <version>1.6.0</version>
  245. <type>jar</type>
  246. <scope>compile</scope>
  247. </dependency>
  248. <dependency>
  249. <groupId>org.eclipse.birt.runtime.3_7_1</groupId>
  250. <artifactId>org.apache.batik.pdf</artifactId>
  251. <version>1.6.0</version>
  252. <type>jar</type>
  253. <scope>compile</scope>
  254. </dependency>
  255. <dependency>
  256. <groupId>javax.media</groupId>
  257. <artifactId>jai-core</artifactId>
  258. <version>1.1.3</version>
  259. </dependency>
  260. <dependency>
  261. <groupId>org.apache.httpcomponents</groupId>
  262. <artifactId>httpclient</artifactId>
  263. <version>4.5.1</version>
  264. <type>jar</type>
  265. <scope>compile</scope>
  266. </dependency>
  267. <dependency>
  268. <groupId>org.apache.httpcomponents</groupId>
  269. <artifactId>httpmime</artifactId>
  270. <version>4.5.1</version>
  271. </dependency>
  272. <dependency>
  273. <groupId>commons-dbcp</groupId>
  274. <artifactId>commons-dbcp</artifactId>
  275. <version>20030825.184428</version>
  276. <type>jar</type>
  277. <scope>compile</scope>
  278. </dependency>
  279. <dependency>
  280. <groupId>org.apache.velocity</groupId>
  281. <artifactId>velocity</artifactId>
  282. <version>1.7</version>
  283. <type>jar</type>
  284. <scope>compile</scope>
  285. <exclusions>
  286. <exclusion>
  287. <artifactId>commons-lang</artifactId>
  288. <groupId>commons-lang</groupId>
  289. </exclusion>
  290. </exclusions>
  291. </dependency>
  292. <dependency>
  293. <groupId>c3p0</groupId>
  294. <artifactId>c3p0</artifactId>
  295. <version>0.9.1.2</version>
  296. <type>jar</type>
  297. <scope>compile</scope>
  298. </dependency>
  299. <dependency>
  300. <groupId>commons-io</groupId>
  301. <artifactId>commons-io</artifactId>
  302. <version>2.4</version>
  303. <type>jar</type>
  304. <scope>compile</scope>
  305. </dependency>
  306. <dependency>
  307. <groupId>commons-httpclient</groupId>
  308. <artifactId>commons-httpclient</artifactId>
  309. <version>20020423</version>
  310. <type>jar</type>
  311. <scope>compile</scope>
  312. </dependency>
  313. <!-- <dependency>
  314. <groupId>commons-httpclient</groupId>
  315. <artifactId>commons-httpclient</artifactId>
  316. <version>3.1</version>
  317. <type>jar</type>
  318. <scope>compile</scope>
  319. </dependency> -->
  320. <dependency>
  321. <groupId>jfree</groupId>
  322. <artifactId>jfreechart</artifactId>
  323. <version>1.0.13</version>
  324. <type>jar</type>
  325. <scope>compile</scope>
  326. </dependency>
  327. <dependency>
  328. <groupId>com.google.code.gson</groupId>
  329. <artifactId>gson</artifactId>
  330. <version>2.2.4</version>
  331. </dependency>
  332. <dependency>
  333. <groupId>org.hsqldb</groupId>
  334. <artifactId>hsqldb</artifactId>
  335. <version>1.8.0.10</version>
  336. <scope>test</scope>
  337. </dependency>
  338. <dependency>
  339. <groupId>jaxen</groupId>
  340. <artifactId>jaxen</artifactId>
  341. <version>1.1.6</version>
  342. </dependency>
  343. <dependency>
  344. <groupId>xerces</groupId>
  345. <artifactId>xercesImpl</artifactId>
  346. <version>2.6.2</version>
  347. </dependency>
  348. <dependency>
  349. <groupId>mysql</groupId>
  350. <artifactId>mysql-connector-java</artifactId>
  351. <version>5.1.47</version>
  352. </dependency>
  353. <dependency>
  354. <groupId>com.alibaba</groupId>
  355. <artifactId>druid</artifactId>
  356. <version>1.0.4</version>
  357. </dependency>
  358. <dependency>
  359. <groupId>org.apache.axis2</groupId>
  360. <artifactId>axis2-transport-http</artifactId>
  361. <version>1.6.2</version>
  362. </dependency>
  363. <dependency>
  364. <groupId>org.apache.axis2</groupId>
  365. <artifactId>axis2-kernel</artifactId>
  366. <version>1.6.2</version>
  367. <exclusions>
  368. <exclusion>
  369. <artifactId>commons-logging</artifactId>
  370. <groupId>commons-logging</groupId>
  371. </exclusion>
  372. <exclusion>
  373. <artifactId>servlet-api</artifactId>
  374. <groupId>javax.servlet</groupId>
  375. </exclusion>
  376. <exclusion>
  377. <artifactId>commons-httpclient</artifactId>
  378. <groupId>commons-httpclient</groupId>
  379. </exclusion>
  380. </exclusions>
  381. </dependency>
  382. <dependency>
  383. <groupId>wsdl4j</groupId>
  384. <artifactId>wsdl4j</artifactId>
  385. <version>1.6.2</version>
  386. </dependency>
  387. <dependency>
  388. <groupId>org.apache.ws.commons.axiom</groupId>
  389. <artifactId>axiom-api</artifactId>
  390. <version>1.2.13</version>
  391. <exclusions>
  392. <exclusion>
  393. <artifactId>commons-logging</artifactId>
  394. <groupId>commons-logging</groupId>
  395. </exclusion>
  396. <exclusion>
  397. <artifactId>jaxen</artifactId>
  398. <groupId>jaxen</groupId>
  399. </exclusion>
  400. </exclusions>
  401. </dependency>
  402. <dependency>
  403. <groupId>org.apache.ws.commons.axiom</groupId>
  404. <artifactId>axiom-impl</artifactId>
  405. <version>1.2.13</version>
  406. <exclusions>
  407. <exclusion>
  408. <artifactId>commons-logging</artifactId>
  409. <groupId>commons-logging</groupId>
  410. </exclusion>
  411. </exclusions>
  412. </dependency>
  413. <dependency>
  414. <groupId>org.apache.neethi</groupId>
  415. <artifactId>neethi</artifactId>
  416. <version>3.0.2</version>
  417. </dependency>
  418. <dependency>
  419. <groupId>org.apache.axis2</groupId>
  420. <artifactId>axis2-adb</artifactId>
  421. <version>1.6.2</version>
  422. <exclusions>
  423. <exclusion>
  424. <artifactId>geronimo-activation_1.1_spec</artifactId>
  425. <groupId>org.apache.geronimo.specs</groupId>
  426. </exclusion>
  427. </exclusions>
  428. </dependency>
  429. <dependency>
  430. <groupId>org.apache.axis2</groupId>
  431. <artifactId>axis2-transport-local</artifactId>
  432. <version>1.6.2</version>
  433. </dependency>
  434. <dependency>
  435. <groupId>org.springframework</groupId>
  436. <artifactId>spring-tx</artifactId>
  437. <version>4.2.1.RELEASE</version>
  438. </dependency>
  439. <dependency>
  440. <groupId>org.springframework</groupId>
  441. <artifactId>spring-web</artifactId>
  442. <version>4.2.1.RELEASE</version>
  443. </dependency>
  444. <dependency>
  445. <groupId>org.springframework</groupId>
  446. <artifactId>spring-context</artifactId>
  447. <version>4.2.1.RELEASE</version>
  448. </dependency>
  449. <dependency>
  450. <groupId>org.springframework</groupId>
  451. <artifactId>spring-core</artifactId>
  452. <version>4.2.1.RELEASE</version>
  453. </dependency>
  454. <dependency>
  455. <groupId>org.springframework</groupId>
  456. <artifactId>spring-aop</artifactId>
  457. <version>4.2.1.RELEASE</version>
  458. </dependency>
  459. <dependency>
  460. <groupId>org.springframework</groupId>
  461. <artifactId>spring-beans</artifactId>
  462. <version>4.2.1.RELEASE</version>
  463. </dependency>
  464. <dependency>
  465. <groupId>org.springframework</groupId>
  466. <artifactId>spring-jdbc</artifactId>
  467. <version>4.2.1.RELEASE</version>
  468. </dependency>
  469. <dependency>
  470. <groupId>org.javassist</groupId>
  471. <artifactId>javassist</artifactId>
  472. <version>3.20.0-GA</version>
  473. </dependency>
  474. <dependency>
  475. <groupId>org.apache.tiles</groupId>
  476. <artifactId>tiles-jsp</artifactId>
  477. <version>2.2.1</version>
  478. <type>jar</type>
  479. <scope>compile</scope>
  480. </dependency>
  481. <dependency>
  482. <groupId>org.apache.tiles</groupId>
  483. <artifactId>tiles-api</artifactId>
  484. <version>2.2.1</version>
  485. <type>jar</type>
  486. <scope>compile</scope>
  487. </dependency>
  488. <dependency>
  489. <groupId>org.apache.tiles</groupId>
  490. <artifactId>tiles-core</artifactId>
  491. <version>2.2.1</version>
  492. <type>jar</type>
  493. <scope>compile</scope>
  494. <exclusions>
  495. <exclusion>
  496. <artifactId>slf4j-api</artifactId>
  497. <groupId>org.slf4j</groupId>
  498. </exclusion>
  499. </exclusions>
  500. </dependency>
  501. <dependency>
  502. <groupId>org.apache.tiles</groupId>
  503. <artifactId>tiles-servlet</artifactId>
  504. <version>2.2.1</version>
  505. <type>jar</type>
  506. <scope>compile</scope>
  507. </dependency>
  508. <dependency>
  509. <groupId>org.springframework</groupId>
  510. <artifactId>spring-context-support</artifactId>
  511. <version>4.2.1.RELEASE</version>
  512. <type>jar</type>
  513. <scope>compile</scope>
  514. </dependency>
  515. <dependency>
  516. <groupId>org.slf4j</groupId>
  517. <artifactId>slf4j-api</artifactId>
  518. <version>1.5.8</version>
  519. </dependency>
  520. <dependency>
  521. <groupId>org.quartz-scheduler</groupId>
  522. <artifactId>quartz</artifactId>
  523. <version>2.2.2</version>
  524. <exclusions>
  525. <exclusion>
  526. <artifactId>c3p0</artifactId>
  527. <groupId>c3p0</groupId>
  528. </exclusion>
  529. <exclusion>
  530. <artifactId>slf4j-api</artifactId>
  531. <groupId>org.slf4j</groupId>
  532. </exclusion>
  533. </exclusions>
  534. </dependency>
  535. <!--
  536. <dependency>
  537. <groupId>xml-apis</groupId>
  538. <artifactId>xml-apis-ext</artifactId>
  539. <version>1.3.04</version>
  540. </dependency> -->
  541. <dependency>
  542. <groupId>batik</groupId>
  543. <artifactId>batik-awt-util</artifactId>
  544. <version>1.6</version>
  545. </dependency>
  546. <dependency>
  547. <groupId>batik</groupId>
  548. <artifactId>batik-bridge</artifactId>
  549. <version>1.6</version>
  550. </dependency>
  551. <dependency>
  552. <groupId>batik</groupId>
  553. <artifactId>batik-css</artifactId>
  554. <version>1.6</version>
  555. </dependency>
  556. <dependency>
  557. <groupId>batik</groupId>
  558. <artifactId>batik-dom</artifactId>
  559. <version>1.6</version>
  560. </dependency>
  561. <dependency>
  562. <groupId>batik</groupId>
  563. <artifactId>batik-ext</artifactId>
  564. <version>1.6</version>
  565. </dependency>
  566. <dependency>
  567. <groupId>batik</groupId>
  568. <artifactId>batik-extension</artifactId>
  569. <version>1.6</version>
  570. </dependency>
  571. <dependency>
  572. <groupId>batik</groupId>
  573. <artifactId>batik-gui-util</artifactId>
  574. <version>1.6</version>
  575. </dependency>
  576. <dependency>
  577. <groupId>batik</groupId>
  578. <artifactId>batik-gvt</artifactId>
  579. <version>1.6</version>
  580. </dependency>
  581. <dependency>
  582. <groupId>batik</groupId>
  583. <artifactId>batik-parser</artifactId>
  584. <version>1.6</version>
  585. </dependency>
  586. <dependency>
  587. <groupId>batik</groupId>
  588. <artifactId>batik-script</artifactId>
  589. <version>1.6</version>
  590. </dependency>
  591. <dependency>
  592. <groupId>batik</groupId>
  593. <artifactId>batik-svg-dom</artifactId>
  594. <version>1.6</version>
  595. </dependency>
  596. <dependency>
  597. <groupId>batik</groupId>
  598. <artifactId>batik-svggen</artifactId>
  599. <version>1.6</version>
  600. </dependency>
  601. <dependency>
  602. <groupId>batik</groupId>
  603. <artifactId>batik-swing</artifactId>
  604. <version>1.6</version>
  605. </dependency>
  606. <dependency>
  607. <groupId>batik</groupId>
  608. <artifactId>batik-transcoder</artifactId>
  609. <version>1.6</version>
  610. </dependency>
  611. <dependency>
  612. <groupId>batik</groupId>
  613. <artifactId>batik-util</artifactId>
  614. <version>1.6</version>
  615. </dependency>
  616. <dependency>
  617. <groupId>batik</groupId>
  618. <artifactId>batik-xml</artifactId>
  619. <version>1.6</version>
  620. </dependency>
  621. <dependency>
  622. <groupId>javax.servlet</groupId>
  623. <artifactId>servlet-api</artifactId>
  624. <version>2.4</version>
  625. <scope>provided</scope>
  626. </dependency>
  627. <dependency>
  628. <groupId>org.apache.pdfbox</groupId>
  629. <artifactId>pdfbox</artifactId>
  630. <version>1.8.6</version>
  631. <exclusions>
  632. <exclusion>
  633. <artifactId>commons-logging</artifactId>
  634. <groupId>commons-logging</groupId>
  635. </exclusion>
  636. </exclusions>
  637. </dependency>
  638. <dependency>
  639. <groupId>net.sf.jasperreports</groupId>
  640. <artifactId>jasperreports</artifactId>
  641. <version>5.5.0</version>
  642. <exclusions>
  643. <exclusion>
  644. <artifactId>commons-logging</artifactId>
  645. <groupId>commons-logging</groupId>
  646. </exclusion>
  647. <exclusion>
  648. <artifactId>commons-digester</artifactId>
  649. <groupId>commons-digester</groupId>
  650. </exclusion>
  651. <exclusion>
  652. <artifactId>jfreechart</artifactId>
  653. <groupId>jfree</groupId>
  654. </exclusion>
  655. <exclusion>
  656. <artifactId>itext</artifactId>
  657. <groupId>com.lowagie</groupId>
  658. </exclusion>
  659. <exclusion>
  660. <artifactId>commons-collections</artifactId>
  661. <groupId>commons-collections</groupId>
  662. </exclusion>
  663. <exclusion>
  664. <artifactId>jcommon</artifactId>
  665. <groupId>jfree</groupId>
  666. </exclusion>
  667. </exclusions>
  668. </dependency>
  669. <dependency>
  670. <groupId>junit</groupId>
  671. <artifactId>junit</artifactId>
  672. <version>4.12</version>
  673. <!--<scope>test</scope>-->
  674. </dependency>
  675. <dependency>
  676. <groupId>com.lowagie</groupId>
  677. <artifactId>itext</artifactId>
  678. <version>2.1.7</version>
  679. </dependency>
  680. <dependency>
  681. <groupId>javax.xml.stream</groupId>
  682. <artifactId>stax-api</artifactId>
  683. <version>1.0-2</version>
  684. </dependency>
  685. <dependency>
  686. <groupId>org.apache.xmlbeans</groupId>
  687. <artifactId>xmlbeans</artifactId>
  688. <version>2.3.0</version>
  689. <exclusions>
  690. <exclusion>
  691. <artifactId>stax-api</artifactId>
  692. <groupId>stax</groupId>
  693. </exclusion>
  694. </exclusions>
  695. </dependency>
  696. <dependency>
  697. <groupId>xalan</groupId>
  698. <artifactId>xalan</artifactId>
  699. <version>2.7.0</version>
  700. <exclusions>
  701. <exclusion>
  702. <artifactId>xml-apis</artifactId>
  703. <groupId>xml-apis</groupId>
  704. </exclusion>
  705. </exclusions>
  706. </dependency>
  707. <dependency>
  708. <groupId>org.codehaus.groovy</groupId>
  709. <artifactId>groovy-all</artifactId>
  710. <version>1.8.6</version>
  711. </dependency>
  712. <dependency>
  713. <groupId>org.apache.woden</groupId>
  714. <artifactId>woden-api</artifactId>
  715. <version>1.0M9</version>
  716. </dependency>
  717. <dependency>
  718. <groupId>org.apache.woden</groupId>
  719. <artifactId>woden-impl-commons</artifactId>
  720. <version>1.0M9</version>
  721. </dependency>
  722. <dependency>
  723. <groupId>org.apache.woden</groupId>
  724. <artifactId>woden-impl-dom</artifactId>
  725. <version>1.0M9</version>
  726. </dependency>
  727. <dependency>
  728. <groupId>com.thetransactioncompany</groupId>
  729. <artifactId>cors-filter</artifactId>
  730. <version>2.5</version>
  731. </dependency>
  732. <dependency>
  733. <groupId>com.squareup.okhttp3</groupId>
  734. <artifactId>okhttp</artifactId>
  735. <version>3.14.9</version>
  736. </dependency>
  737. <!--word转换为PDF文档-->
  738. <dependency>
  739. <groupId>com.documents4j</groupId>
  740. <artifactId>documents4j-local</artifactId>
  741. <version>1.0.3</version>
  742. </dependency>
  743. <dependency>
  744. <groupId>com.documents4j</groupId>
  745. <artifactId>documents4j-transformer-msoffice-word</artifactId>
  746. <version>1.0.3</version>
  747. </dependency>
  748. <dependency>
  749. <groupId>com.documents4j</groupId>
  750. <artifactId>documents4j-transformer-msoffice-excel</artifactId>
  751. <version>1.0.3</version>
  752. </dependency>
  753. <dependency>
  754. <groupId>org.testng</groupId>
  755. <artifactId>testng</artifactId>
  756. <version>RELEASE</version>
  757. <scope>compile</scope>
  758. </dependency>
  759. <dependency>
  760. <groupId>io.jsonwebtoken</groupId>
  761. <artifactId>jjwt-api</artifactId>
  762. <version>0.12.6</version>
  763. </dependency>
  764. <dependency>
  765. <groupId>io.jsonwebtoken</groupId>
  766. <artifactId>jjwt-impl</artifactId>
  767. <version>0.12.6</version>
  768. <scope>runtime</scope>
  769. </dependency>
  770. <dependency>
  771. <groupId>io.jsonwebtoken</groupId>
  772. <artifactId>jjwt-jackson</artifactId> <!-- 或者使用 jjwt-gson,如果偏好 Gson -->
  773. <version>0.12.6</version>
  774. <scope>runtime</scope>
  775. </dependency>
  776. <dependency>
  777. <groupId>com.fasterxml.jackson.core</groupId>
  778. <artifactId>jackson-databind</artifactId>
  779. <version>2.15.3</version>
  780. </dependency>
  781. <dependency>
  782. <groupId>com.fasterxml.jackson.core</groupId>
  783. <artifactId>jackson-annotations</artifactId>
  784. <version>2.15.3</version>
  785. </dependency>
  786. <dependency>
  787. <groupId>com.fasterxml.jackson.core</groupId>
  788. <artifactId>jackson-core</artifactId>
  789. <version>2.15.3</version>
  790. </dependency>
  791. </dependencies>
  792. <build>
  793. <finalName>oa</finalName>
  794. <plugins>
  795. <plugin>
  796. <groupId>org.apache.maven.plugins</groupId>
  797. <artifactId>maven-compiler-plugin</artifactId>
  798. <version>3.6.0</version>
  799. <configuration>
  800. <source>1.8</source>
  801. <target>1.8</target>
  802. <encoding>UTF-8</encoding>
  803. </configuration>
  804. </plugin>
  805. </plugins>
  806. </build>
  807. </project>