pom.xml 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>cn.com.ota</groupId>
  5. <artifactId>agent-ota</artifactId>
  6. <version>1.0.0</version>
  7. <packaging>war</packaging>
  8. <name>agent-ota</name>
  9. <description>ota代理商卡管理系统</description>
  10. <url>http://agent-ota.cn</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.web.root>src\main\webapp</project.web.root>
  14. <servlet.api.version>3.0.1</servlet.api.version>
  15. <jsp.api.version>2.0</jsp.api.version>
  16. <junit.version>4.12</junit.version>
  17. <hamcrest.version>1.3</hamcrest.version>
  18. <!-- JSP Begin -->
  19. <jstl.version>1.2</jstl.version>
  20. <!-- JSP End -->
  21. <!-- Common Begin -->
  22. <guava.version>19.0</guava.version>
  23. <fastjson.version>1.2.8</fastjson.version>
  24. <commons.lang3.version>3.8.1</commons.lang3.version>
  25. <commons.collections.version>3.2.1</commons.collections.version>
  26. <commons.beanutils.version>1.9.2</commons.beanutils.version>
  27. <commons.codec.version>1.10</commons.codec.version>
  28. <commons.io.version>2.4</commons.io.version>
  29. <commons.fileupload.version>1.3.1</commons.fileupload.version>
  30. <commons.logging.version>1.2</commons.logging.version>
  31. <xmlapis.version>1.0.b2</xmlapis.version>
  32. <dom4j.version>1.6.1</dom4j.version>
  33. <slf4j.version>1.7.18</slf4j.version>
  34. <log4j2.version>2.5</log4j2.version>
  35. <!-- Common End -->
  36. <!-- Data Access Begin -->
  37. <mysql.version>5.1.38</mysql.version>
  38. <druid.version>1.0.16</druid.version>
  39. <antlr.version>2.7.7</antlr.version>
  40. <geronimo.jta.version>1.1.1</geronimo.jta.version>
  41. <javassist.version>3.20.0-GA</javassist.version>
  42. <jandex.version>2.0.2.Final</jandex.version>
  43. <jboss.logging.version>3.3.0.Final</jboss.logging.version>
  44. <ehcache-core.version>2.6.11</ehcache-core.version>
  45. <ehcache.version>2.10.1</ehcache.version>
  46. <hibernate.version>5.1.0.Final</hibernate.version>
  47. <hibernate.jpa.version>1.0.0.Final</hibernate.jpa.version>
  48. <hibernate.annotations.version>5.0.1.Final</hibernate.annotations.version>
  49. <!-- Data Access End -->
  50. <!-- Spring Begin -->
  51. <aopalliance.version>1.0</aopalliance.version>
  52. <aspectj.version>1.8.8</aspectj.version>
  53. <spring.version>4.2.5.RELEASE</spring.version>
  54. <spring.data.version>1.11.4.RELEASE</spring.data.version>
  55. <spring.data.jpa.version>1.9.4.RELEASE</spring.data.jpa.version>
  56. <dozer.version>5.5.1</dozer.version>
  57. <!-- Spring End -->
  58. <shiro.version>1.2.4</shiro.version>
  59. <!-- HttpClient Begin -->
  60. <http.client.version>4.5.2</http.client.version>
  61. <!-- HttpClient End -->
  62. </properties>
  63. <dependencies>
  64. <dependency>
  65. <groupId>cn.hutool</groupId>
  66. <artifactId>hutool-all</artifactId>
  67. <version>5.3.0</version>
  68. </dependency>
  69. <!--velocity代码生成使用模板 -->
  70. <dependency>
  71. <groupId>org.apache.velocity</groupId>
  72. <artifactId>velocity</artifactId>
  73. <version>1.7</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>junit</groupId>
  77. <artifactId>junit</artifactId>
  78. <version>${junit.version}</version>
  79. <!-- <scope>test</scope> -->
  80. </dependency>
  81. <dependency>
  82. <groupId>org.hamcrest</groupId>
  83. <artifactId>hamcrest-core</artifactId>
  84. <version>${hamcrest.version}</version>
  85. <!-- <scope>test</scope> -->
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework</groupId>
  89. <artifactId>spring-test</artifactId>
  90. <version>${spring.version}</version>
  91. <!-- <scope>test</scope> -->
  92. </dependency>
  93. <dependency>
  94. <groupId>javax.servlet</groupId>
  95. <artifactId>javax.servlet-api</artifactId>
  96. <version>${servlet.api.version}</version>
  97. <scope>provided</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>javax.servlet</groupId>
  101. <artifactId>jsp-api</artifactId>
  102. <version>${jsp.api.version}</version>
  103. <scope>provided</scope>
  104. </dependency>
  105. <!-- JSP Begin -->
  106. <dependency>
  107. <groupId>jstl</groupId>
  108. <artifactId>jstl</artifactId>
  109. <version>${jstl.version}</version>
  110. </dependency>
  111. <!-- JSP End -->
  112. <!-- Common Begin -->
  113. <dependency>
  114. <groupId>com.google.guava</groupId>
  115. <artifactId>guava</artifactId>
  116. <version>${guava.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.alibaba</groupId>
  120. <artifactId>fastjson</artifactId>
  121. <version>${fastjson.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.commons</groupId>
  125. <artifactId>commons-lang3</artifactId>
  126. <version>${commons.lang3.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>commons-collections</groupId>
  130. <artifactId>commons-collections</artifactId>
  131. <version>${commons.collections.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>commons-beanutils</groupId>
  135. <artifactId>commons-beanutils</artifactId>
  136. <version>${commons.beanutils.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>commons-codec</groupId>
  140. <artifactId>commons-codec</artifactId>
  141. <version>${commons.codec.version}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>commons-io</groupId>
  145. <artifactId>commons-io</artifactId>
  146. <version>${commons.io.version}</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>commons-fileupload</groupId>
  150. <artifactId>commons-fileupload</artifactId>
  151. <version>${commons.fileupload.version}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>commons-logging</groupId>
  155. <artifactId>commons-logging</artifactId>
  156. <version>${commons.logging.version}</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>xml-apis</groupId>
  160. <artifactId>xml-apis</artifactId>
  161. <version>${xmlapis.version}</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>dom4j</groupId>
  165. <artifactId>dom4j</artifactId>
  166. <version>${dom4j.version}</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.slf4j</groupId>
  170. <artifactId>slf4j-api</artifactId>
  171. <version>${slf4j.version}</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.slf4j</groupId>
  175. <artifactId>jcl-over-slf4j</artifactId>
  176. <version>${slf4j.version}</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.apache.logging.log4j</groupId>
  180. <artifactId>log4j-slf4j-impl</artifactId>
  181. <version>${log4j2.version}</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.apache.logging.log4j</groupId>
  185. <artifactId>log4j-api</artifactId>
  186. <version>${log4j2.version}</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.apache.logging.log4j</groupId>
  190. <artifactId>log4j-core</artifactId>
  191. <version>${log4j2.version}</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.apache.logging.log4j</groupId>
  195. <artifactId>log4j-web</artifactId>
  196. <version>${log4j2.version}</version>
  197. </dependency>
  198. <!-- Common End -->
  199. <!-- Data Access Begin -->
  200. <dependency>
  201. <groupId>mysql</groupId>
  202. <artifactId>mysql-connector-java</artifactId>
  203. <version>${mysql.version}</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>com.alibaba</groupId>
  207. <artifactId>druid</artifactId>
  208. <version>${druid.version}</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>antlr</groupId>
  212. <artifactId>antlr</artifactId>
  213. <version>${antlr.version}</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>org.apache.geronimo.specs</groupId>
  217. <artifactId>geronimo-jta_1.1_spec</artifactId>
  218. <version>${geronimo.jta.version}</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>org.javassist</groupId>
  222. <artifactId>javassist</artifactId>
  223. <version>${javassist.version}</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.jboss</groupId>
  227. <artifactId>jandex</artifactId>
  228. <version>${jandex.version}</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.jboss.logging</groupId>
  232. <artifactId>jboss-logging</artifactId>
  233. <version>${jboss.logging.version}</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>net.sf.ehcache</groupId>
  237. <artifactId>ehcache-core</artifactId>
  238. <version>${ehcache-core.version}</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>net.sf.ehcache</groupId>
  242. <artifactId>ehcache</artifactId>
  243. <version>${ehcache.version}</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>org.hibernate.javax.persistence</groupId>
  247. <artifactId>hibernate-jpa-2.1-api</artifactId>
  248. <version>${hibernate.jpa.version}</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>org.hibernate.common</groupId>
  252. <artifactId>hibernate-commons-annotations</artifactId>
  253. <version>${hibernate.annotations.version}</version>
  254. </dependency>
  255. <dependency>
  256. <groupId>org.hibernate</groupId>
  257. <artifactId>hibernate-core</artifactId>
  258. <version>${hibernate.version}</version>
  259. </dependency>
  260. <dependency>
  261. <groupId>org.hibernate</groupId>
  262. <artifactId>hibernate-ehcache</artifactId>
  263. <version>${hibernate.version}</version>
  264. </dependency>
  265. <dependency>
  266. <groupId>org.hibernate</groupId>
  267. <artifactId>hibernate-entitymanager</artifactId>
  268. <version>${hibernate.version}</version>
  269. </dependency>
  270. <!-- Data Access End -->
  271. <!-- Spring Begin -->
  272. <dependency>
  273. <groupId>aopalliance</groupId>
  274. <artifactId>aopalliance</artifactId>
  275. <version>${aopalliance.version}</version>
  276. </dependency>
  277. <dependency>
  278. <groupId>org.aspectj</groupId>
  279. <artifactId>aspectjrt</artifactId>
  280. <version>${aspectj.version}</version>
  281. </dependency>
  282. <dependency>
  283. <groupId>org.aspectj</groupId>
  284. <artifactId>aspectjweaver</artifactId>
  285. <version>${aspectj.version}</version>
  286. </dependency>
  287. <dependency>
  288. <groupId>org.springframework</groupId>
  289. <artifactId>spring-core</artifactId>
  290. <version>${spring.version}</version>
  291. </dependency>
  292. <dependency>
  293. <groupId>org.springframework</groupId>
  294. <artifactId>spring-beans</artifactId>
  295. <version>${spring.version}</version>
  296. </dependency>
  297. <dependency>
  298. <groupId>org.springframework</groupId>
  299. <artifactId>spring-context</artifactId>
  300. <version>${spring.version}</version>
  301. </dependency>
  302. <dependency>
  303. <groupId>org.springframework</groupId>
  304. <artifactId>spring-context-support</artifactId>
  305. <version>${spring.version}</version>
  306. </dependency>
  307. <dependency>
  308. <groupId>org.springframework</groupId>
  309. <artifactId>spring-aop</artifactId>
  310. <version>${spring.version}</version>
  311. </dependency>
  312. <dependency>
  313. <groupId>org.springframework</groupId>
  314. <artifactId>spring-aspects</artifactId>
  315. <version>${spring.version}</version>
  316. </dependency>
  317. <dependency>
  318. <groupId>org.springframework</groupId>
  319. <artifactId>spring-instrument</artifactId>
  320. <version>${spring.version}</version>
  321. </dependency>
  322. <dependency>
  323. <groupId>org.springframework</groupId>
  324. <artifactId>spring-tx</artifactId>
  325. <version>${spring.version}</version>
  326. </dependency>
  327. <dependency>
  328. <groupId>org.springframework</groupId>
  329. <artifactId>spring-orm</artifactId>
  330. <version>${spring.version}</version>
  331. </dependency>
  332. <dependency>
  333. <groupId>org.springframework</groupId>
  334. <artifactId>spring-jdbc</artifactId>
  335. <version>${spring.version}</version>
  336. </dependency>
  337. <dependency>
  338. <groupId>org.springframework</groupId>
  339. <artifactId>spring-web</artifactId>
  340. <version>${spring.version}</version>
  341. </dependency>
  342. <dependency>
  343. <groupId>org.springframework</groupId>
  344. <artifactId>spring-webmvc</artifactId>
  345. <version>${spring.version}</version>
  346. </dependency>
  347. <dependency>
  348. <groupId>org.springframework.data</groupId>
  349. <artifactId>spring-data-commons</artifactId>
  350. <version>${spring.data.version}</version>
  351. </dependency>
  352. <dependency>
  353. <groupId>org.springframework.data</groupId>
  354. <artifactId>spring-data-jpa</artifactId>
  355. <version>${spring.data.jpa.version}</version>
  356. </dependency>
  357. <!-- Spring End -->
  358. <!-- Dozer Begin -->
  359. <dependency>
  360. <groupId>net.sf.dozer</groupId>
  361. <artifactId>dozer</artifactId>
  362. <version>${dozer.version}</version>
  363. </dependency>
  364. <dependency>
  365. <groupId>net.sf.dozer</groupId>
  366. <artifactId>dozer-spring</artifactId>
  367. <version>${dozer.version}</version>
  368. </dependency>
  369. <!-- Dozer End -->
  370. <!-- Shiro Begin -->
  371. <dependency>
  372. <groupId>org.apache.shiro</groupId>
  373. <artifactId>shiro-core</artifactId>
  374. <version>${shiro.version}</version>
  375. </dependency>
  376. <dependency>
  377. <groupId>org.apache.shiro</groupId>
  378. <artifactId>shiro-ehcache</artifactId>
  379. <version>${shiro.version}</version>
  380. </dependency>
  381. <dependency>
  382. <groupId>org.apache.shiro</groupId>
  383. <artifactId>shiro-web</artifactId>
  384. <version>${shiro.version}</version>
  385. </dependency>
  386. <dependency>
  387. <groupId>org.apache.shiro</groupId>
  388. <artifactId>shiro-spring</artifactId>
  389. <version>${shiro.version}</version>
  390. </dependency>
  391. <!-- Shiro End -->
  392. <!-- HttpClient Begin -->
  393. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  394. <dependency>
  395. <groupId>org.apache.httpcomponents</groupId>
  396. <artifactId>httpclient</artifactId>
  397. <version>4.5.2</version>
  398. </dependency>
  399. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  400. <dependency>
  401. <groupId>org.apache.httpcomponents</groupId>
  402. <artifactId>httpcore</artifactId>
  403. <version>4.4.5</version>
  404. </dependency>
  405. <!-- https://mvnrepository.com/artifact/org.mockito/mockito-core -->
  406. <dependency>
  407. <groupId>org.mockito</groupId>
  408. <artifactId>mockito-core</artifactId>
  409. <version>2.2.11</version>
  410. </dependency>
  411. <!-- HttpClient End -->
  412. <!-- poi excel begin -->
  413. <dependency>
  414. <groupId>org.apache.poi</groupId>
  415. <artifactId>poi</artifactId>
  416. <version>3.17</version>
  417. </dependency>
  418. <dependency>
  419. <groupId>org.apache.poi</groupId>
  420. <artifactId>poi-ooxml</artifactId>
  421. <version>3.17</version>
  422. </dependency>
  423. <dependency>
  424. <groupId>org.apache.poi</groupId>
  425. <artifactId>poi-ooxml-schemas</artifactId>
  426. <version>3.17</version>
  427. </dependency>
  428. <!-- poi excel end -->
  429. <!-- https://mvnrepository.com/artifact/commons-net/commons-net -->
  430. <dependency>
  431. <groupId>commons-net</groupId>
  432. <artifactId>commons-net</artifactId>
  433. <version>3.5</version>
  434. </dependency>
  435. <dependency>
  436. <groupId>org.quartz-scheduler</groupId>
  437. <artifactId>quartz</artifactId>
  438. <version>2.2.3</version>
  439. </dependency>
  440. <!-- https://mvnrepository.com/artifact/org.jdom/jdom -->
  441. <dependency>
  442. <groupId>org.jdom</groupId>
  443. <artifactId>jdom</artifactId>
  444. <version>1.1.3</version>
  445. </dependency>
  446. <!-- https://mvnrepository.com/artifact/ch.ethz.ganymed/ganymed-ssh2 -->
  447. <dependency>
  448. <groupId>ch.ethz.ganymed</groupId>
  449. <artifactId>ganymed-ssh2</artifactId>
  450. <version>262</version>
  451. </dependency>
  452. <dependency>
  453. <groupId>com.github.cverges.expect4j</groupId>
  454. <artifactId>expect4j</artifactId>
  455. <version>1.6</version>
  456. </dependency>
  457. <!-- https://mvnrepository.com/artifact/org.freemarker/freemarker -->
  458. <dependency>
  459. <groupId>org.freemarker</groupId>
  460. <artifactId>freemarker</artifactId>
  461. <version>2.3.25-incubating</version>
  462. </dependency>
  463. <!-- https://mvnrepository.com/artifact/com.google.zxing/core -->
  464. <dependency>
  465. <groupId>com.google.zxing</groupId>
  466. <artifactId>core</artifactId>
  467. <version>3.3.2</version>
  468. </dependency>
  469. <!-- https://mvnrepository.com/artifact/com.github.bingoohuang/patchca -->
  470. <dependency>
  471. <groupId>com.github.bingoohuang</groupId>
  472. <artifactId>patchca</artifactId>
  473. <version>0.0.1</version>
  474. </dependency>
  475. <dependency>
  476. <groupId>org.apache.httpcomponents</groupId>
  477. <artifactId>httpmime</artifactId>
  478. <version>4.5.2</version>
  479. </dependency>
  480. <dependency>
  481. <groupId>org.json</groupId>
  482. <artifactId>json</artifactId>
  483. <version>20140107</version>
  484. </dependency>
  485. <dependency>
  486. <groupId>com.github.stuxuhai</groupId>
  487. <artifactId>jpinyin</artifactId>
  488. <version>1.1.7</version>
  489. </dependency>
  490. <!-- WebSocket支持 -->
  491. <dependency>
  492. <groupId>javax</groupId>
  493. <artifactId>javaee-api</artifactId>
  494. <version>7.0</version>
  495. <scope>provided</scope>
  496. </dependency>
  497. <dependency>
  498. <groupId>org.apache.cxf</groupId>
  499. <artifactId>cxf-rt-transports-http-jetty</artifactId>
  500. <version>3.1.8</version>
  501. </dependency>
  502. <!-- https://mvnrepository.com/artifact/commons-httpclient/commons-httpclient -->
  503. <dependency>
  504. <groupId>commons-httpclient</groupId>
  505. <artifactId>commons-httpclient</artifactId>
  506. <version>3.1</version>
  507. </dependency>
  508. <!-- swagger -->
  509. <dependency>
  510. <groupId>io.springfox</groupId>
  511. <artifactId>springfox-swagger2</artifactId>
  512. <version>2.6.1</version>
  513. </dependency>
  514. <dependency>
  515. <groupId>io.springfox</groupId>
  516. <artifactId>springfox-swagger-ui</artifactId>
  517. <version>2.6.1</version>
  518. </dependency>
  519. <dependency>
  520. <groupId>com.fasterxml.jackson.core</groupId>
  521. <artifactId>jackson-core</artifactId>
  522. <version>2.6.5</version>
  523. </dependency>
  524. <dependency>
  525. <groupId>com.fasterxml.jackson.core</groupId>
  526. <artifactId>jackson-databind</artifactId>
  527. <version>2.6.5</version>
  528. </dependency>
  529. <dependency>
  530. <groupId>com.fasterxml.jackson.core</groupId>
  531. <artifactId>jackson-annotations</artifactId>
  532. <version>2.6.5</version>
  533. </dependency>
  534. <dependency>
  535. <groupId>org.codehaus.jackson</groupId>
  536. <artifactId>jackson-mapper-asl</artifactId>
  537. <version>1.9.13</version>
  538. </dependency>
  539. <dependency>
  540. <groupId>com.github.bingoohuang</groupId>
  541. <artifactId>patchca</artifactId>
  542. <version>0.0.1</version>
  543. </dependency>
  544. <!-- 腾讯云对象存储 -->
  545. <dependency>
  546. <groupId>com.qcloud</groupId>
  547. <artifactId>cos_api</artifactId>
  548. <version>5.2.4</version>
  549. </dependency>
  550. <dependency>
  551. <groupId>commedia</groupId>
  552. <artifactId>evomedia-xuggler</artifactId>
  553. <version>1.0</version>
  554. <scope>system</scope>
  555. <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/xuggle-xuggler-5.4.jar</systemPath>
  556. </dependency>
  557. <dependency>
  558. <groupId>commedia</groupId>
  559. <artifactId>evomedia-jpinyin</artifactId>
  560. <version>1.0</version>
  561. <scope>system</scope>
  562. <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/jpinyin-1.1.8.1.jar</systemPath>
  563. </dependency>
  564. <dependency>
  565. <groupId>commedia</groupId>
  566. <artifactId>evomedia-patchca</artifactId>
  567. <version>1.0</version>
  568. <scope>system</scope>
  569. <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/patchca-0.5.0.jar</systemPath>
  570. </dependency>
  571. </dependencies>
  572. <repositories>
  573. <repository>
  574. <snapshots>
  575. <enabled>false</enabled>
  576. </snapshots>
  577. <id>maven2</id>
  578. <name>Maven2 repository</name>
  579. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  580. </repository>
  581. </repositories>
  582. <pluginRepositories>
  583. <pluginRepository>
  584. <releases>
  585. <updatePolicy>never</updatePolicy>
  586. </releases>
  587. <snapshots>
  588. <enabled>false</enabled>
  589. </snapshots>
  590. <id>maven2</id>
  591. <name>Maven2 repository</name>
  592. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  593. </pluginRepository>
  594. </pluginRepositories>
  595. <build>
  596. <finalName>ROOT</finalName>
  597. <plugins>
  598. <plugin>
  599. <groupId>org.apache.maven.plugins</groupId>
  600. <artifactId>maven-compiler-plugin</artifactId>
  601. <version>3.5.1</version>
  602. <configuration>
  603. <encoding>UTF-8</encoding>
  604. <source>1.8</source>
  605. <target>1.8</target>
  606. <compilerArguments>
  607. <extdirs>${project.web.root}\WEB-INF\lib</extdirs>
  608. </compilerArguments>
  609. </configuration>
  610. </plugin>
  611. </plugins>
  612. <defaultGoal>compile</defaultGoal>
  613. <resources>
  614. <resource>
  615. <directory>src/main/java</directory>
  616. <includes>
  617. <include>**/*.properties</include>
  618. <include>**/*.xml</include>
  619. <include>**/*.yml</include>
  620. <include>**/*.html</include>
  621. <include>**/*.js</include>
  622. <include>**/*.css</include>
  623. <include>**/*.dll</include>
  624. <include>**/*.json</include>
  625. <include>**/**</include>
  626. </includes>
  627. <filtering>false</filtering>
  628. </resource>
  629. <resource>
  630. <directory>src/main/resources</directory>
  631. <includes>
  632. <include>**/*.properties</include>
  633. <include>**/*.xml</include>
  634. <include>**/*.yml</include>
  635. <include>**/*.html</include>
  636. <include>**/*.js</include>
  637. <include>**/*.css</include>
  638. <include>**/*.dll</include>
  639. <include>**/*.json</include>
  640. <include>**/**</include>
  641. </includes>
  642. <filtering>false</filtering>
  643. </resource>
  644. <resource>
  645. <directory>src/main/webapp</directory>
  646. <targetPath>META-INF/resources</targetPath>
  647. <includes>
  648. <include>**/**</include>
  649. </includes>
  650. <filtering>false</filtering>
  651. </resource>
  652. </resources>
  653. </build>
  654. </project>