pom.xml 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" 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.superservice</groupId>
  6. <artifactId>super_service</artifactId>
  7. <packaging>war</packaging>
  8. <version>1.0</version>
  9. <name>Super Service Server</name>
  10. <url>http://www.palmnest.com</url>
  11. <prerequisites>
  12. <maven>2.2.1</maven>
  13. </prerequisites>
  14. <properties>
  15. <!-- Application settings -->
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <copyright.year>2013</copyright.year>
  18. <dao.framework>hibernate</dao.framework>
  19. <web.framework>spring</web.framework>
  20. <amp.genericCore>true</amp.genericCore>
  21. <amp.fullSource>false</amp.fullSource>
  22. <db.name>super_service</db.name>
  23. <!-- <db.name>sunmei_realty_customer_test</db.name> -->
  24. <!-- env settings -->
  25. <java.version>1.8</java.version>
  26. <!-- Maven plugin versions -->
  27. <maven.compile.plugin.version>2.5.1</maven.compile.plugin.version>
  28. <jetty.maven.plugin.version>8.1.3.v20120416</jetty.maven.plugin.version>
  29. <maven.clean.plugin.version>2.5</maven.clean.plugin.version>
  30. <maven.war.plugin.version>2.3</maven.war.plugin.version>
  31. <native2ascii.maven.plugin.version>1.0-beta-1</native2ascii.maven.plugin.version>
  32. <maven.changes.plugin.version>2.8</maven.changes.plugin.version>
  33. <cobertura.maven.plugin.version>2.5.2</cobertura.maven.plugin.version>
  34. <maven.javadoc.plugin.version>2.9</maven.javadoc.plugin.version>
  35. <maven.jxr.plugin.version>2.3</maven.jxr.plugin.version>
  36. <maven.pmd.plugin.version>2.7.1</maven.pmd.plugin.version>
  37. <maven.surefire.report.plugin.version>2.12.4</maven.surefire.report.plugin.version>
  38. <webtest.maven.plugin.version>1.0.0</webtest.maven.plugin.version>
  39. <!-- Framework dependency versions -->
  40. <appfuse.version>2.2.1</appfuse.version>
  41. <commons.fileupload.version>1.2.1</commons.fileupload.version>
  42. <commons.io.version>1.3.2</commons.io.version>
  43. <displaytag.version>1.2</displaytag.version>
  44. <spring.version>3.1.3.RELEASE</spring.version><!-- 3.1.3.RELEASE -->
  45. <spring.security.version>3.1.5.RELEASE</spring.security.version><!-- 3.1.3.RELEASE -->
  46. <hibernate.search.version>4.1.1.Final</hibernate.search.version>
  47. <velocity.version>1.4</velocity.version>
  48. <cxf.version>2.7.0</cxf.version>
  49. <jackson.version>1.7.1</jackson.version>
  50. <lucene.version>3.5.0</lucene.version>
  51. <springmodules.validation.version>0.8</springmodules.validation.version>
  52. <spring.data.mongodb.version>1.2.0.RELEASE</spring.data.mongodb.version>
  53. <!-- Testing dependency versions -->
  54. <cargo.version>1.2.4</cargo.version>
  55. <jmock.version>2.5.1</jmock.version>
  56. <jsp.version>2.1</jsp.version>
  57. <junit.version>4.10</junit.version>
  58. <servlet.version>2.5</servlet.version>
  59. <wiser.version>1.2</wiser.version>
  60. <lombok.version>1.18.10</lombok.version>
  61. <!-- Database settings -->
  62. <dbunit.dataTypeFactoryName>org.dbunit.ext.mysql.MySqlDataTypeFactory</dbunit.dataTypeFactoryName>
  63. <dbunit.operation.type>CLEAN_INSERT</dbunit.operation.type>
  64. <hibernate.dialect>org.hibernate.dialect.MySQL5InnoDBDialect</hibernate.dialect>
  65. <jdbc.groupId>mysql</jdbc.groupId>
  66. <jdbc.artifactId>mysql-connector-java</jdbc.artifactId>
  67. <jdbc.version>5.1.22</jdbc.version>
  68. <jdbc.driverClassName>com.mysql.jdbc.Driver</jdbc.driverClassName>
  69. <!--<jdbc.url>-->
  70. <!--jdbc:mysql://rm-wz949306t03an8m8s4o.mysql.rds.aliyuncs.com/super_service_dev?createDatabaseIfNotExist=true&amp;amp;useUnicode=true&amp;amp;characterEncoding=utf-8&amp;amp;autoReconnect=true-->
  71. <!--&lt;!&ndash; jdbc:mysql://127.0.0.1:3306/superdesk_pro_bak?createDatabaseIfNotExist=true&amp;amp;useUnicode=true&amp;amp;characterEncoding=utf-8&amp;amp;autoReconnect=true &ndash;&gt;-->
  72. <!--</jdbc.url>-->
  73. <!--&lt;!&ndash; <jdbc.username>root</jdbc.username>-->
  74. <!--<jdbc.password>root@2020</jdbc.password> &ndash;&gt;-->
  75. <!---->
  76. <!--<jdbc.username>superdev</jdbc.username>-->
  77. <!--<jdbc.password>super_Service1221@!</jdbc.password>-->
  78. <jdbc.url>
  79. jdbc:mysql://112.74.48.214:53307/super_service_dev?createDatabaseIfNotExist=true&amp;amp;useUnicode=true&amp;amp;characterEncoding=utf-8&amp;amp;autoReconnect=true
  80. <!-- jdbc:mysql://127.0.0.1:3306/superdesk_pro_bak?createDatabaseIfNotExist=true&amp;amp;useUnicode=true&amp;amp;characterEncoding=utf-8&amp;amp;autoReconnect=true -->
  81. </jdbc.url>
  82. <!-- <jdbc.username>root</jdbc.username>
  83. <jdbc.password>root@2020</jdbc.password> -->
  84. <jdbc.username>root</jdbc.username>
  85. <jdbc.password>service_newbak2019</jdbc.password>
  86. <superdesk.libs.version>1.3.1-SNAPSHOT</superdesk.libs.version>
  87. </properties>
  88. <dependencies>
  89. <dependency>
  90. <groupId>com.github.fernandospr</groupId>
  91. <artifactId>javapns-jdk16</artifactId>
  92. <version>2.2.1</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>cn.jpush.api</groupId>
  96. <artifactId>jpush-client</artifactId>
  97. <version>3.3.4</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.google.code.gson</groupId>
  101. <artifactId>gson</artifactId>
  102. <version>2.3</version>
  103. </dependency>
  104. <!-- quartz Job -->
  105. <dependency>
  106. <groupId>org.quartz-scheduler</groupId>
  107. <artifactId>quartz</artifactId>
  108. <version>1.7.3</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.github.wxpay</groupId>
  112. <artifactId>wxpay-sdk</artifactId>
  113. <version>0.0.3</version>
  114. </dependency>
  115. <!-- JDBC Dependencies -->
  116. <dependency>
  117. <groupId>${jdbc.groupId}</groupId>
  118. <artifactId>${jdbc.artifactId}</artifactId>
  119. <version>${jdbc.version}</version>
  120. </dependency>
  121. <!-- apache common dependencies -->
  122. <dependency>
  123. <groupId>commons-fileupload</groupId>
  124. <artifactId>commons-fileupload</artifactId>
  125. <version>${commons.fileupload.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.apache.commons</groupId>
  129. <artifactId>commons-io</artifactId>
  130. <version>${commons.io.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>displaytag</groupId>
  134. <artifactId>displaytag</artifactId>
  135. <version>${displaytag.version}</version>
  136. <exclusions>
  137. <exclusion>
  138. <groupId>org.slf4j</groupId>
  139. <artifactId>jcl104-over-slf4j</artifactId>
  140. </exclusion>
  141. </exclusions>
  142. </dependency>
  143. <dependency>
  144. <groupId>commons-dbcp</groupId>
  145. <artifactId>commons-dbcp</artifactId>
  146. <version>1.3</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>commons-lang</groupId>
  150. <artifactId>commons-lang</artifactId>
  151. <version>2.6</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>commons-beanutils</groupId>
  155. <artifactId>commons-beanutils</artifactId>
  156. <version>1.8.3</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>commons-net</groupId>
  160. <artifactId>commons-net</artifactId>
  161. <version>3.2</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>cn.superdesk.libs</groupId>
  165. <artifactId>superdesk-libs-common</artifactId>
  166. <version>${superdesk.libs.version}</version>
  167. </dependency>
  168. <!-- aspectj dependencies -->
  169. <dependency>
  170. <groupId>org.aspectj</groupId>
  171. <artifactId>aspectjweaver</artifactId>
  172. <version>1.6.10</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.aspectj</groupId>
  176. <artifactId>aspectjrt</artifactId>
  177. <version>1.6.10</version>
  178. </dependency>
  179. <!-- javax dependencies -->
  180. <dependency>
  181. <groupId>javax.servlet.jsp</groupId>
  182. <artifactId>jsp-api</artifactId>
  183. <version>${jsp.version}</version>
  184. <scope>provided</scope>
  185. </dependency>
  186. <dependency>
  187. <groupId>javax.servlet</groupId>
  188. <artifactId>servlet-api</artifactId>
  189. <version>${servlet.version}</version>
  190. <scope>provided</scope>
  191. </dependency>
  192. <dependency>
  193. <groupId>javax.xml.bind</groupId>
  194. <artifactId>jaxb-api</artifactId>
  195. <version>2.2</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>javassist</groupId>
  199. <artifactId>javassist</artifactId>
  200. <version>3.12.1.GA</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>javax.mail</groupId>
  204. <artifactId>mail</artifactId>
  205. <version>1.4.6</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>commons-collections</groupId>
  209. <artifactId>commons-collections</artifactId>
  210. <version>3.1</version>
  211. </dependency>
  212. <!-- unit test dependencies -->
  213. <dependency>
  214. <groupId>org.jmock</groupId>
  215. <artifactId>jmock</artifactId>
  216. <version>${jmock.version}</version>
  217. <!-- <scope>test</scope> -->
  218. </dependency>
  219. <dependency>
  220. <groupId>org.jmock</groupId>
  221. <artifactId>jmock-junit4</artifactId>
  222. <version>${jmock.version}</version>
  223. <!-- <scope>test</scope> -->
  224. </dependency>
  225. <!-- Upgrade junit-dep used by jmock -->
  226. <dependency>
  227. <groupId>junit</groupId>
  228. <artifactId>junit-dep</artifactId>
  229. <version>4.5</version>
  230. <!-- <scope>test</scope> -->
  231. </dependency>
  232. <dependency>
  233. <groupId>junit</groupId>
  234. <artifactId>junit</artifactId>
  235. <version>${junit.version}</version>
  236. <!-- <scope>test</scope> -->
  237. </dependency>
  238. <!-- spring dependencies -->
  239. <dependency>
  240. <groupId>org.springmodules</groupId>
  241. <artifactId>spring-modules-validation</artifactId>
  242. <version>${springmodules.validation.version}</version>
  243. <exclusions>
  244. <exclusion>
  245. <groupId>org.springframework</groupId>
  246. <artifactId>spring</artifactId>
  247. </exclusion>
  248. <exclusion>
  249. <groupId>org.springframework</groupId>
  250. <artifactId>spring-support</artifactId>
  251. </exclusion>
  252. <exclusion>
  253. <groupId>xml-apis</groupId>
  254. <artifactId>xml-apis</artifactId>
  255. </exclusion>
  256. </exclusions>
  257. </dependency>
  258. <dependency>
  259. <groupId>org.springframework</groupId>
  260. <artifactId>spring-core</artifactId>
  261. <version>${spring.version}</version>
  262. </dependency>
  263. <dependency>
  264. <groupId>org.springframework</groupId>
  265. <artifactId>spring-test</artifactId>
  266. <version>${spring.version}</version>
  267. <!-- <scope>test</scope> -->
  268. </dependency>
  269. <dependency>
  270. <groupId>org.springframework</groupId>
  271. <artifactId>spring-asm</artifactId>
  272. <version>${spring.version}</version>
  273. </dependency>
  274. <dependency>
  275. <groupId>org.springframework</groupId>
  276. <artifactId>spring-beans</artifactId>
  277. <version>${spring.version}</version>
  278. </dependency>
  279. <dependency>
  280. <groupId>org.springframework</groupId>
  281. <artifactId>spring-web</artifactId>
  282. <version>${spring.version}</version>
  283. </dependency>
  284. <dependency>
  285. <groupId>org.springframework</groupId>
  286. <artifactId>spring-aop</artifactId>
  287. <version>${spring.version}</version>
  288. </dependency>
  289. <dependency>
  290. <groupId>org.springframework</groupId>
  291. <artifactId>spring-jdbc</artifactId>
  292. <version>${spring.version}</version>
  293. </dependency>
  294. <dependency>
  295. <groupId>org.springframework</groupId>
  296. <artifactId>spring-webmvc</artifactId>
  297. <version>${spring.version}</version>
  298. </dependency>
  299. <dependency>
  300. <groupId>org.springframework</groupId>
  301. <artifactId>spring-context-support</artifactId>
  302. <version>${spring.version}</version>
  303. </dependency>
  304. <dependency>
  305. <groupId>org.springframework</groupId>
  306. <artifactId>spring-aspects</artifactId>
  307. <version>${spring.version}</version>
  308. </dependency>
  309. <dependency>
  310. <groupId>org.springframework</groupId>
  311. <artifactId>spring-orm</artifactId>
  312. <version>${spring.version}</version>
  313. </dependency>
  314. <dependency>
  315. <groupId>org.springframework</groupId>
  316. <artifactId>spring-oxm</artifactId>
  317. <version>${spring.version}</version>
  318. </dependency>
  319. <dependency>
  320. <groupId>org.springframework</groupId>
  321. <artifactId>spring-context</artifactId>
  322. <version>${spring.version}</version>
  323. </dependency>
  324. <dependency>
  325. <groupId>org.springframework</groupId>
  326. <artifactId>spring-expression</artifactId>
  327. <version>${spring.version}</version>
  328. </dependency>
  329. <dependency>
  330. <groupId>org.springframework.security</groupId>
  331. <artifactId>spring-security-core</artifactId>
  332. <version>${spring.security.version}</version>
  333. <exclusions>
  334. <exclusion>
  335. <groupId>org.springframework</groupId>
  336. <artifactId>spring-aop</artifactId>
  337. </exclusion>
  338. <exclusion>
  339. <groupId>org.springframework</groupId>
  340. <artifactId>spring-beans</artifactId>
  341. </exclusion>
  342. <exclusion>
  343. <groupId>org.springframework</groupId>
  344. <artifactId>spring-context</artifactId>
  345. </exclusion>
  346. <exclusion>
  347. <groupId>org.springframework</groupId>
  348. <artifactId>spring-core</artifactId>
  349. </exclusion>
  350. <exclusion>
  351. <groupId>org.springframework</groupId>
  352. <artifactId>spring-expression</artifactId>
  353. </exclusion>
  354. </exclusions>
  355. </dependency>
  356. <dependency>
  357. <groupId>org.springframework.security</groupId>
  358. <artifactId>spring-security-config</artifactId>
  359. <version>${spring.security.version}</version>
  360. <exclusions>
  361. <exclusion>
  362. <groupId>org.springframework</groupId>
  363. <artifactId>spring-aop</artifactId>
  364. </exclusion>
  365. <exclusion>
  366. <groupId>org.springframework</groupId>
  367. <artifactId>spring-beans</artifactId>
  368. </exclusion>
  369. <exclusion>
  370. <groupId>org.springframework</groupId>
  371. <artifactId>spring-context</artifactId>
  372. </exclusion>
  373. <exclusion>
  374. <groupId>org.springframework</groupId>
  375. <artifactId>spring-core</artifactId>
  376. </exclusion>
  377. </exclusions>
  378. </dependency>
  379. <dependency>
  380. <groupId>org.springframework.security</groupId>
  381. <artifactId>spring-security-web</artifactId>
  382. <version>${spring.security.version}</version>
  383. </dependency>
  384. <dependency>
  385. <groupId>org.springframework.security</groupId>
  386. <artifactId>spring-security-acl</artifactId>
  387. <version>${spring.security.version}</version>
  388. </dependency>
  389. <dependency>
  390. <groupId>org.springframework.security</groupId>
  391. <artifactId>spring-security-taglibs</artifactId>
  392. <version>${spring.security.version}</version>
  393. </dependency>
  394. <!-- spring-data for mongodb-->
  395. <dependency>
  396. <groupId>org.springframework.data</groupId>
  397. <artifactId>spring-data-mongodb</artifactId>
  398. <version>${spring.data.mongodb.version}</version>
  399. </dependency>
  400. <!-- spring-data for redis-->
  401. <dependency>
  402. <groupId>org.springframework.data</groupId>
  403. <artifactId>spring-data-redis</artifactId>
  404. <version>1.6.4.RELEASE</version>
  405. </dependency>
  406. <dependency>
  407. <groupId>redis.clients</groupId>
  408. <artifactId>jedis</artifactId>
  409. <version>2.8.0</version>
  410. </dependency>
  411. <!-- JWT Json Web Token 依赖 -->
  412. <dependency>
  413. <groupId>io.jsonwebtoken</groupId>
  414. <artifactId>jjwt</artifactId>
  415. <version>0.7.0</version>
  416. </dependency>
  417. <dependency>
  418. <groupId>com.thetransactioncompany</groupId>
  419. <artifactId>cors-filter</artifactId>
  420. <version>2.6</version>
  421. </dependency>
  422. <!-- Hibernate Dependencies -->
  423. <dependency>
  424. <groupId>org.hibernate</groupId>
  425. <artifactId>hibernate-search</artifactId>
  426. <version>${hibernate.search.version}</version>
  427. </dependency>
  428. <dependency>
  429. <groupId>org.hibernate</groupId>
  430. <artifactId>hibernate-search-orm</artifactId>
  431. <version>${hibernate.search.version}</version>
  432. </dependency>
  433. <dependency>
  434. <groupId>org.hibernate</groupId>
  435. <artifactId>hibernate-search-engine</artifactId>
  436. <version>${hibernate.search.version}</version>
  437. </dependency>
  438. <dependency>
  439. <groupId>org.hibernate</groupId>
  440. <artifactId>hibernate-search-analyzers</artifactId>
  441. <version>${hibernate.search.version}</version>
  442. </dependency>
  443. <dependency>
  444. <groupId>org.hibernate</groupId>
  445. <artifactId>hibernate-core</artifactId>
  446. <version>4.1.8.Final</version>
  447. </dependency>
  448. <dependency>
  449. <groupId>org.hibernate.javax.persistence</groupId>
  450. <artifactId>hibernate-jpa-2.0-api</artifactId>
  451. <version>1.0.1.Final</version>
  452. </dependency>
  453. <dependency>
  454. <groupId>org.hibernate.common</groupId>
  455. <artifactId>hibernate-commons-annotations</artifactId>
  456. <version>4.0.1.Final</version>
  457. </dependency>
  458. <dependency>
  459. <groupId>org.hibernate</groupId>
  460. <artifactId>hibernate-ehcache</artifactId>
  461. <version>4.1.8.Final</version>
  462. </dependency>
  463. <dependency>
  464. <groupId>org.hibernate.java-persistence</groupId>
  465. <artifactId>jpa-api</artifactId>
  466. <version>2.0-cr-1</version>
  467. </dependency>
  468. <dependency>
  469. <groupId>net.sf.ehcache</groupId>
  470. <artifactId>ehcache-core</artifactId>
  471. <version>2.6.2</version>
  472. </dependency>
  473. <dependency>
  474. <groupId>net.sf.ehcache</groupId>
  475. <artifactId>ehcache-web</artifactId>
  476. <version>2.0.4</version>
  477. </dependency>
  478. <!-- NND 这个只是用了TMD一点事 屏了 linjinyu 20200317-->
  479. <!-- <dependency>-->
  480. <!-- <groupId>opensymphony</groupId>-->
  481. <!-- <artifactId>sitemesh</artifactId>-->
  482. <!-- <version>2.4.2</version>-->
  483. <!-- </dependency>-->
  484. <dependency>
  485. <groupId>org.tuckey</groupId>
  486. <artifactId>urlrewritefilter</artifactId>
  487. <version>3.1.0</version>
  488. </dependency>
  489. <!-- Lucene Dependencies -->
  490. <dependency>
  491. <groupId>org.apache.lucene</groupId>
  492. <artifactId>lucene-core</artifactId>
  493. <version>${lucene.version}</version>
  494. </dependency>
  495. <dependency>
  496. <groupId>org.apache.lucene</groupId>
  497. <artifactId>lucene-analyzers</artifactId>
  498. <version>${lucene.version}</version>
  499. </dependency>
  500. <dependency>
  501. <groupId>org.apache.lucene</groupId>
  502. <artifactId>lucene-highlighter</artifactId>
  503. <version>${lucene.version}</version>
  504. </dependency>
  505. <dependency>
  506. <groupId>org.apache.lucene</groupId>
  507. <artifactId>lucene-memory</artifactId>
  508. <version>${lucene.version}</version>
  509. </dependency>
  510. <dependency>
  511. <groupId>org.apache.lucene</groupId>
  512. <artifactId>lucene-misc</artifactId>
  513. <version>${lucene.version}</version>
  514. </dependency>
  515. <dependency>
  516. <groupId>org.apache.lucene</groupId>
  517. <artifactId>lucene-spatial</artifactId>
  518. <version>${lucene.version}</version>
  519. </dependency>
  520. <dependency>
  521. <groupId>org.apache.lucene</groupId>
  522. <artifactId>lucene-spellchecker</artifactId>
  523. <version>${lucene.version}</version>
  524. </dependency>
  525. <dependency>
  526. <groupId>org.apache.lucene</groupId>
  527. <artifactId>lucene-grouping</artifactId>
  528. <version>${lucene.version}</version>
  529. </dependency>
  530. <dependency>
  531. <groupId>org.apache.lucene</groupId>
  532. <artifactId>lucene-smartcn</artifactId>
  533. <version>${lucene.version}</version>
  534. </dependency>
  535. <dependency>
  536. <groupId>org.apache.lucene</groupId>
  537. <artifactId>lucene-stempel</artifactId>
  538. <version>${lucene.version}</version>
  539. </dependency>
  540. <dependency>
  541. <groupId>struts-menu</groupId>
  542. <artifactId>struts-menu</artifactId>
  543. <version>2.4.3</version>
  544. </dependency>
  545. <dependency>
  546. <groupId>org.subethamail</groupId>
  547. <artifactId>subethasmtp-wiser</artifactId>
  548. <version>${wiser.version}</version>
  549. <scope>test</scope>
  550. </dependency>
  551. <dependency>
  552. <groupId>org.directwebremoting</groupId>
  553. <artifactId>dwr</artifactId>
  554. <version>2.0.3</version>
  555. </dependency>
  556. <!-- Velocity dependencies -->
  557. <dependency>
  558. <groupId>velocity</groupId>
  559. <artifactId>velocity</artifactId>
  560. <version>${velocity.version}</version>
  561. </dependency>
  562. <dependency>
  563. <groupId>velocity</groupId>
  564. <artifactId>velocity-dep</artifactId>
  565. <version>${velocity.version}</version>
  566. </dependency>
  567. <dependency>
  568. <groupId>velocity-tools</groupId>
  569. <artifactId>velocity-tools-view</artifactId>
  570. <version>1.0</version>
  571. </dependency>
  572. <!-- CXF Dependencies -->
  573. <dependency>
  574. <groupId>org.apache.cxf</groupId>
  575. <artifactId>cxf-rt-frontend-jaxrs</artifactId>
  576. <version>${cxf.version}</version>
  577. <!-- Exclude Spring in order to get latest version -->
  578. <exclusions>
  579. <exclusion>
  580. <groupId>org.springframework</groupId>
  581. <artifactId>spring-core</artifactId>
  582. </exclusion>
  583. <exclusion>
  584. <groupId>org.springframework</groupId>
  585. <artifactId>spring-web</artifactId>
  586. </exclusion>
  587. <exclusion>
  588. <groupId>org.codehaus.woodstox</groupId>
  589. <artifactId>wstx-asl</artifactId>
  590. </exclusion>
  591. </exclusions>
  592. </dependency>
  593. <dependency>
  594. <groupId>org.apache.cxf</groupId>
  595. <artifactId>cxf-api</artifactId>
  596. <version>${cxf.version}</version>
  597. </dependency>
  598. <dependency>
  599. <groupId>org.apache.cxf</groupId>
  600. <artifactId>cxf-rt-core</artifactId>
  601. <version>${cxf.version}</version>
  602. </dependency>
  603. <dependency>
  604. <groupId>org.apache.cxf</groupId>
  605. <artifactId>cxf-rt-bindings-xml</artifactId>
  606. <version>${cxf.version}</version>
  607. </dependency>
  608. <dependency>
  609. <groupId>org.apache.cxf</groupId>
  610. <artifactId>cxf-rt-transports-http</artifactId>
  611. <version>${cxf.version}</version>
  612. <exclusions>
  613. <exclusion>
  614. <groupId>org.springframework</groupId>
  615. <artifactId>spring-web</artifactId>
  616. </exclusion>
  617. </exclusions>
  618. </dependency>
  619. <dependency>
  620. <groupId>org.apache.cxf</groupId>
  621. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  622. <version>${cxf.version}</version>
  623. <exclusions>
  624. <exclusion>
  625. <groupId>org.codehaus.woodstox</groupId>
  626. <artifactId>wstx-asl</artifactId>
  627. </exclusion>
  628. </exclusions>
  629. </dependency>
  630. <dependency>
  631. <groupId>org.apache.cxf</groupId>
  632. <artifactId>cxf-rt-bindings-soap</artifactId>
  633. <version>${cxf.version}</version>
  634. </dependency>
  635. <dependency>
  636. <groupId>org.apache.cxf</groupId>
  637. <artifactId>cxf-rt-databinding-jaxb</artifactId>
  638. <version>${cxf.version}</version>
  639. </dependency>
  640. <dependency>
  641. <groupId>org.apache.cxf</groupId>
  642. <artifactId>cxf-rt-frontend-simple</artifactId>
  643. <version>${cxf.version}</version>
  644. </dependency>
  645. <dependency>
  646. <groupId>org.apache.cxf</groupId>
  647. <artifactId>cxf-rt-ws-addr</artifactId>
  648. <version>${cxf.version}</version>
  649. </dependency>
  650. <dependency>
  651. <groupId>org.apache.cxf</groupId>
  652. <artifactId>cxf-rt-ws-policy</artifactId>
  653. <version>${cxf.version}</version>
  654. </dependency>
  655. <!-- w key dependencies -->
  656. <dependency>
  657. <groupId>org.codehaus.woodstox</groupId>
  658. <artifactId>woodstox-core-asl</artifactId>
  659. <version>4.1.4</version>
  660. </dependency>
  661. <dependency>
  662. <groupId>wsdl4j</groupId>
  663. <artifactId>wsdl4j</artifactId>
  664. <version>1.6.2</version>
  665. </dependency>
  666. <dependency>
  667. <groupId>jstl</groupId>
  668. <artifactId>jstl</artifactId>
  669. <version>1.2</version>
  670. </dependency>
  671. <!-- Json dependencies -->
  672. <dependency>
  673. <groupId>org.codehaus.jackson</groupId>
  674. <artifactId>jackson-jaxrs</artifactId>
  675. <version>${jackson.version}</version>
  676. </dependency>
  677. <dependency>
  678. <groupId>org.codehaus.jackson</groupId>
  679. <artifactId>jackson-core-asl</artifactId>
  680. <version>${jackson.version}</version>
  681. </dependency>
  682. <dependency>
  683. <groupId>org.codehaus.jackson</groupId>
  684. <artifactId>jackson-mapper-asl</artifactId>
  685. <version>${jackson.version}</version>
  686. </dependency>
  687. <dependency>
  688. <groupId>joda-time</groupId>
  689. <artifactId>joda-time</artifactId>
  690. <version>2.6</version>
  691. </dependency>
  692. <!-- log4j dependencies -->
  693. <dependency>
  694. <groupId>org.slf4j</groupId>
  695. <artifactId>jcl-over-slf4j</artifactId>
  696. <version>1.6.1</version>
  697. </dependency>
  698. <dependency>
  699. <groupId>log4j</groupId>
  700. <artifactId>log4j</artifactId>
  701. <version>1.2.17</version>
  702. </dependency>
  703. <dependency>
  704. <groupId>org.slf4j</groupId>
  705. <artifactId>slf4j-log4j12</artifactId>
  706. <version>1.6.1</version>
  707. </dependency>
  708. <!-- add by yb -->
  709. <dependency>
  710. <groupId>com.alibaba</groupId>
  711. <artifactId>fastjson</artifactId>
  712. <version>1.2.83</version>
  713. </dependency>
  714. <dependency>
  715. <groupId>com.thoughtworks.xstream</groupId>
  716. <artifactId>xstream</artifactId>
  717. <version>1.4.5</version>
  718. </dependency>
  719. <dependency>
  720. <groupId>org.apache.poi</groupId>
  721. <artifactId>poi</artifactId>
  722. <version>3.8</version>
  723. </dependency>
  724. <dependency>
  725. <groupId>org.apache.poi</groupId>
  726. <artifactId>poi-ooxml</artifactId>
  727. <version>3.8</version>
  728. </dependency>
  729. <dependency>
  730. <groupId>net.sourceforge.jtds</groupId>
  731. <artifactId>jtds</artifactId>
  732. <version>1.2.4</version>
  733. </dependency>
  734. <dependency>
  735. <groupId>net.sf.json-lib</groupId>
  736. <artifactId>json-lib</artifactId>
  737. <version>2.4</version>
  738. <classifier>jdk15</classifier><!--指定jdk版本-->
  739. </dependency>
  740. <dependency>
  741. <groupId>com.belerweb</groupId>
  742. <artifactId>pinyin4j</artifactId>
  743. <version>2.5.0</version>
  744. </dependency>
  745. <dependency>
  746. <groupId>org.apache.httpcomponents</groupId>
  747. <artifactId>httpclient</artifactId>
  748. <version>4.3.2</version>
  749. </dependency>
  750. <dependency>
  751. <groupId>org.apache.httpcomponents</groupId>
  752. <artifactId>httpcore</artifactId>
  753. <version>4.4</version>
  754. </dependency>
  755. <dependency>
  756. <groupId>org.apache.httpcomponents</groupId>
  757. <artifactId>httpmime</artifactId>
  758. <version>4.3.2</version>
  759. </dependency>
  760. <!-- <dependency>-->
  761. <!-- <groupId>org.java-json</groupId>-->
  762. <!-- <artifactId>Java-json</artifactId>-->
  763. <!--&lt;!&ndash; <version>1.1.0</version>&ndash;&gt;-->
  764. <!-- <version>20190722</version>-->
  765. <!-- </dependency>-->
  766. <dependency>
  767. <groupId>org.json</groupId>
  768. <artifactId>json</artifactId>
  769. <version>20190722</version>
  770. <!-- <type>bundle</type>-->
  771. </dependency>
  772. <!-- <dependency>-->
  773. <!-- <groupId>com.microsoft.dh</groupId>-->
  774. <!-- <artifactId>dh</artifactId>-->
  775. <!-- <version>1.0.0</version>-->
  776. <!-- </dependency>-->
  777. <dependency>
  778. <groupId>com.dh.buildlock</groupId>
  779. <artifactId>dh</artifactId>
  780. <version>1.0.0</version>
  781. </dependency>
  782. <dependency>
  783. <groupId>org.jdom</groupId>
  784. <artifactId>jdom</artifactId>
  785. <version>1.1.3</version>
  786. </dependency>
  787. <dependency>
  788. <groupId>org.jsoup</groupId>
  789. <artifactId>jsoup</artifactId>
  790. <version>1.11.1</version>
  791. </dependency>
  792. <dependency>
  793. <groupId>javax.mail</groupId>
  794. <artifactId>mail</artifactId>
  795. <version>1.4.6</version>
  796. </dependency>
  797. <!-- 图片压缩 https://mvnrepository.com/artifact/net.coobird/thumbnailator -->
  798. <dependency>
  799. <groupId>net.coobird</groupId>
  800. <artifactId>thumbnailator</artifactId>
  801. <version>0.4.8</version>
  802. </dependency>
  803. <!-- 图片属性 -->
  804. <dependency>
  805. <groupId>com.drewnoakes</groupId>
  806. <artifactId>metadata-extractor</artifactId>
  807. <version>2.11.0</version>
  808. </dependency>
  809. <!-- https://mvnrepository.com/artifact/org.apache.kafka/kafka -->
  810. <dependency>
  811. <groupId>org.apache.kafka</groupId>
  812. <artifactId>kafka_2.11</artifactId>
  813. <version>2.0.0</version>
  814. </dependency>
  815. <!-- https://mvnrepository.com/artifact/net.iharder/base64 -->
  816. <dependency>
  817. <groupId>net.iharder</groupId>
  818. <artifactId>base64</artifactId>
  819. <version>2.3.8</version>
  820. </dependency>
  821. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  822. <dependency>
  823. <groupId>org.apache.commons</groupId>
  824. <artifactId>commons-lang3</artifactId>
  825. <version>3.7</version>
  826. </dependency>
  827. <dependency>
  828. <groupId>org.projectlombok</groupId>
  829. <artifactId>lombok</artifactId>
  830. <version>${lombok.version}</version>
  831. <scope>provided</scope>
  832. </dependency>
  833. <dependency>
  834. <groupId>org.eclipse.jetty.alpn</groupId>
  835. <artifactId>alpn-api</artifactId>
  836. <version>1.1.2.v20150522</version>
  837. </dependency>
  838. <dependency>
  839. <groupId>com.turo</groupId>
  840. <artifactId>pushy</artifactId>
  841. <version>0.11.1</version>
  842. </dependency>
  843. <dependency>
  844. <groupId>io.netty</groupId>
  845. <artifactId>netty-all</artifactId>
  846. <version>4.1.6.Final</version>
  847. <scope>compile</scope>
  848. </dependency>
  849. <dependency>
  850. <groupId>io.netty</groupId>
  851. <artifactId>netty-codec-mqtt</artifactId>
  852. <version>4.1.25.Final</version>
  853. </dependency>
  854. <dependency>
  855. <groupId>io.netty</groupId>
  856. <artifactId>netty-tcnative</artifactId>
  857. <version>2.0.6.Final</version>
  858. </dependency>
  859. <dependency>
  860. <groupId>org.projectlombok</groupId>
  861. <artifactId>lombok</artifactId>
  862. <version>RELEASE</version>
  863. <scope>compile</scope>
  864. </dependency>
  865. </dependencies>
  866. <build>
  867. <finalName>${project.artifactId}</finalName>
  868. <defaultGoal>install</defaultGoal>
  869. <plugins>
  870. <plugin>
  871. <groupId>org.apache.maven.plugins</groupId>
  872. <artifactId>maven-resources-plugin</artifactId>
  873. <configuration>
  874. <encoding>UTF-8</encoding>
  875. <!-- 过滤后缀为pem、pfx的证书文件 -->
  876. <nonFilteredFileExtensions>
  877. <nonFilteredFileExtension>pem</nonFilteredFileExtension>
  878. <nonFilteredFileExtension>pfx</nonFilteredFileExtension>
  879. <nonFilteredFileExtension>p12</nonFilteredFileExtension>
  880. </nonFilteredFileExtensions>
  881. </configuration>
  882. </plugin>
  883. <plugin>
  884. <artifactId>maven-compiler-plugin</artifactId>
  885. <version>${maven.compile.plugin.version}</version>
  886. <configuration>
  887. <source>${java.version}</source>
  888. <target>${java.version}</target>
  889. </configuration>
  890. </plugin>
  891. <plugin>
  892. <groupId>org.mortbay.jetty</groupId>
  893. <artifactId>jetty-maven-plugin</artifactId>
  894. <version>${jetty.maven.plugin.version}</version>
  895. <configuration>
  896. <scanIntervalSeconds>0</scanIntervalSeconds>
  897. <webApp>
  898. <contextPath>/</contextPath>
  899. </webApp>
  900. </configuration>
  901. </plugin>
  902. <!-- clean-up previous hibernate-search indexed from integration tests,
  903. as there could be a lock -->
  904. <plugin>
  905. <artifactId>maven-clean-plugin</artifactId>
  906. <version>${maven.clean.plugin.version}</version>
  907. <configuration>
  908. <filesets>
  909. <fileset>
  910. <directory>${user.home}/${project.build.finalName}/index</directory>
  911. </fileset>
  912. </filesets>
  913. </configuration>
  914. </plugin>
  915. <!-- will package a ready-to-run app regarding hibernate-search index
  916. location -->
  917. <plugin>
  918. <artifactId>maven-war-plugin</artifactId>
  919. <version>${maven.war.plugin.version}</version>
  920. <configuration>
  921. <escapeString>\</escapeString>
  922. <webResources>
  923. <resource>
  924. <directory>src/main/resources/packaged</directory>
  925. <targetPath>WEB-INF/classes</targetPath>
  926. <filtering>true</filtering>
  927. <includes>
  928. <include>hibernate.properties</include>
  929. </includes>
  930. </resource>
  931. </webResources>
  932. </configuration>
  933. </plugin>
  934. <plugin>
  935. <groupId>org.codehaus.mojo</groupId>
  936. <artifactId>native2ascii-maven-plugin</artifactId>
  937. <version>${native2ascii.maven.plugin.version}</version>
  938. <executions>
  939. <execution>
  940. <id>native2ascii-utf8</id>
  941. <goals>
  942. <goal>native2ascii</goal>
  943. </goals>
  944. <configuration>
  945. <encoding>UTF8</encoding>
  946. <includes>
  947. <include>ApplicationResources_zh*.properties</include>
  948. <include>displaytag_zh*.properties</include>
  949. </includes>
  950. </configuration>
  951. </execution>
  952. </executions>
  953. </plugin>
  954. <plugin>
  955. <groupId>org.apache.maven.plugins</groupId>
  956. <artifactId>maven-compiler-plugin</artifactId>
  957. <configuration>
  958. <source>1.8</source>
  959. <target>1.8</target>
  960. </configuration>
  961. </plugin>
  962. </plugins>
  963. <resources>
  964. <resource>
  965. <directory>src/main/resources</directory>
  966. <filtering>true</filtering>
  967. </resource>
  968. </resources>
  969. <testResources>
  970. <testResource>
  971. <directory>src/test/resources</directory>
  972. <filtering>true</filtering>
  973. </testResource>
  974. <testResource>
  975. <directory>src/main/webapp</directory>
  976. <filtering>true</filtering>
  977. <includes>
  978. <include>**/*.xml</include>
  979. </includes>
  980. </testResource>
  981. </testResources>
  982. <pluginManagement>
  983. <plugins>
  984. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  985. <plugin>
  986. <groupId>org.eclipse.m2e</groupId>
  987. <artifactId>lifecycle-mapping</artifactId>
  988. <version>1.0.0</version>
  989. <configuration>
  990. <lifecycleMappingMetadata>
  991. <pluginExecutions>
  992. <pluginExecution>
  993. <pluginExecutionFilter>
  994. <groupId>
  995. org.codehaus.mojo
  996. </groupId>
  997. <artifactId>
  998. native2ascii-maven-plugin
  999. </artifactId>
  1000. <versionRange>
  1001. [1.0-beta-1,)
  1002. </versionRange>
  1003. <goals>
  1004. <goal>native2ascii</goal>
  1005. </goals>
  1006. </pluginExecutionFilter>
  1007. <action>
  1008. <ignore></ignore>
  1009. </action>
  1010. </pluginExecution>
  1011. </pluginExecutions>
  1012. </lifecycleMappingMetadata>
  1013. </configuration>
  1014. </plugin>
  1015. </plugins>
  1016. </pluginManagement>
  1017. </build>
  1018. <!-- <reporting>-->
  1019. <!-- <plugins>-->
  1020. <!-- <plugin>-->
  1021. <!-- <artifactId>maven-changes-plugin</artifactId>-->
  1022. <!-- <version>${maven.changes.plugin.version}</version>-->
  1023. <!-- </plugin>-->
  1024. <!-- <plugin>-->
  1025. <!-- <groupId>org.codehaus.mojo</groupId>-->
  1026. <!-- <artifactId>cobertura-maven-plugin</artifactId>-->
  1027. <!-- <configuration>-->
  1028. <!-- <instrumentation>-->
  1029. <!-- <excludes>-->
  1030. <!-- <exclude>**/model/*.class</exclude>-->
  1031. <!-- </excludes>-->
  1032. <!-- </instrumentation>-->
  1033. <!-- </configuration>-->
  1034. <!-- <version>${cobertura.maven.plugin.version}</version>-->
  1035. <!-- </plugin>-->
  1036. <!-- <plugin>-->
  1037. <!-- <artifactId>maven-javadoc-plugin</artifactId>-->
  1038. <!-- <version>${maven.javadoc.plugin.version}</version>-->
  1039. <!-- </plugin>-->
  1040. <!-- <plugin>-->
  1041. <!-- <artifactId>maven-jxr-plugin</artifactId>-->
  1042. <!-- <version>${maven.jxr.plugin.version}</version>-->
  1043. <!-- </plugin>-->
  1044. <!-- <plugin>-->
  1045. <!-- <artifactId>maven-pmd-plugin</artifactId>-->
  1046. <!-- <configuration>-->
  1047. <!-- <linkXRef>true</linkXRef>-->
  1048. <!-- <targetJdk>${java.version}</targetJdk>-->
  1049. <!-- </configuration>-->
  1050. <!-- <version>${maven.pmd.plugin.version}</version>-->
  1051. <!-- </plugin>-->
  1052. <!-- <plugin>-->
  1053. <!-- <artifactId>maven-surefire-report-plugin</artifactId>-->
  1054. <!-- <version>${maven.surefire.report.plugin.version}</version>-->
  1055. <!-- </plugin>-->
  1056. <!-- <plugin>-->
  1057. <!-- <groupId>org.codehaus.mojo</groupId>-->
  1058. <!-- <artifactId>webtest-maven-plugin</artifactId>-->
  1059. <!-- <version>${webtest.maven.plugin.version}</version>-->
  1060. <!-- </plugin>-->
  1061. <!-- </plugins>-->
  1062. <!-- </reporting>-->
  1063. <!-- <profiles>-->
  1064. <!-- <profile>-->
  1065. <!-- <id>integration-test</id>-->
  1066. <!-- <activation>-->
  1067. <!-- <property>-->
  1068. <!-- <name>!skipTests</name>-->
  1069. <!-- </property>-->
  1070. <!-- </activation>-->
  1071. <!-- <build>-->
  1072. <!-- <plugins>-->
  1073. <!-- <plugin>-->
  1074. <!-- <groupId>org.codehaus.cargo</groupId>-->
  1075. <!-- <artifactId>cargo-maven2-plugin</artifactId>-->
  1076. <!-- <version>${cargo.version}</version>-->
  1077. <!-- <configuration>-->
  1078. <!-- <wait>${cargo.wait}</wait>-->
  1079. <!-- <container>-->
  1080. <!-- <containerId>${cargo.container}</containerId>-->
  1081. <!-- <home>${cargo.container.home}</home>-->
  1082. <!-- <zipUrlInstaller>-->
  1083. <!-- <url>${cargo.container.url}</url>-->
  1084. <!-- <extractDir>${installDir}</extractDir>-->
  1085. <!-- </zipUrlInstaller>-->
  1086. <!-- </container>-->
  1087. <!-- <configuration>-->
  1088. <!-- <home>${project.build.directory}/${cargo.container}/container</home>-->
  1089. <!-- <properties>-->
  1090. <!-- <cargo.hostname>${cargo.host}</cargo.hostname>-->
  1091. <!-- <cargo.servlet.port>${cargo.port}</cargo.servlet.port>-->
  1092. <!-- &lt;!&ndash; To prevent conflicts with already running instances &ndash;&gt;-->
  1093. <!-- <cargo.tomcat.ajp.port>8123</cargo.tomcat.ajp.port>-->
  1094. <!-- </properties>-->
  1095. <!-- </configuration>-->
  1096. <!-- </configuration>-->
  1097. <!-- <executions>-->
  1098. <!-- <execution>-->
  1099. <!-- <id>start-container</id>-->
  1100. <!-- <phase>pre-integration-test</phase>-->
  1101. <!-- <goals>-->
  1102. <!-- <goal>start</goal>-->
  1103. <!-- </goals>-->
  1104. <!-- </execution>-->
  1105. <!-- <execution>-->
  1106. <!-- <id>stop-container</id>-->
  1107. <!-- <phase>post-integration-test</phase>-->
  1108. <!-- <goals>-->
  1109. <!-- <goal>stop</goal>-->
  1110. <!-- </goals>-->
  1111. <!-- </execution>-->
  1112. <!-- </executions>-->
  1113. <!-- </plugin>-->
  1114. <!-- <plugin>-->
  1115. <!-- <groupId>org.codehaus.mojo</groupId>-->
  1116. <!-- <artifactId>webtest-maven-plugin</artifactId>-->
  1117. <!-- <version>${webtest.maven.plugin.version}</version>-->
  1118. <!-- <executions>-->
  1119. <!-- <execution>-->
  1120. <!-- <id>webtest-test</id>-->
  1121. <!-- <phase>integration-test</phase>-->
  1122. <!-- <goals>-->
  1123. <!-- <goal>test</goal>-->
  1124. <!-- </goals>-->
  1125. <!-- </execution>-->
  1126. <!-- <execution>-->
  1127. <!-- <id>webtest-verify</id>-->
  1128. <!-- <phase>verify</phase>-->
  1129. <!-- <goals>-->
  1130. <!-- <goal>verify-result</goal>-->
  1131. <!-- </goals>-->
  1132. <!-- </execution>-->
  1133. <!-- <execution>-->
  1134. <!-- <id>webtest-report-html</id>-->
  1135. <!-- <phase>post-integration-test</phase>-->
  1136. <!-- <goals>-->
  1137. <!-- <goal>report</goal>-->
  1138. <!-- </goals>-->
  1139. <!-- </execution>-->
  1140. <!-- </executions>-->
  1141. <!-- <configuration>-->
  1142. <!-- <host>${cargo.host}</host>-->
  1143. <!-- <port>${cargo.port}</port>-->
  1144. <!-- <sourcedirectory>src/test/resources</sourcedirectory>-->
  1145. <!-- <sourcefile>web-tests.xml</sourcefile>-->
  1146. <!-- <target>${webtest.target}</target>-->
  1147. <!-- <basepath>${project.build.finalName}</basepath>-->
  1148. <!-- <resultpath>target/webtest/webtest-results</resultpath>-->
  1149. <!-- <haltonfailure>false</haltonfailure>-->
  1150. <!-- <haltonerror>false</haltonerror>-->
  1151. <!-- <loglevel>fatal</loglevel>-->
  1152. <!-- </configuration>-->
  1153. <!-- </plugin>-->
  1154. <!-- </plugins>-->
  1155. <!-- </build>-->
  1156. <!-- </profile>-->
  1157. <!-- &lt;!&ndash; ================= Production Settings Profile ================= &ndash;&gt;-->
  1158. <!-- &lt;!&ndash; Use "-P prod" when you want to use the settings in this profile &ndash;&gt;-->
  1159. <!-- &lt;!&ndash; =============================================================== &ndash;&gt;-->
  1160. <!-- <profile>-->
  1161. <!-- <id>prod</id>-->
  1162. <!-- <build>-->
  1163. <!-- <plugins>-->
  1164. <!-- &lt;!&ndash; Override location of data file for DbUnit to load (doesn't have -->
  1165. <!-- negative keys) &ndash;&gt;-->
  1166. <!-- <plugin>-->
  1167. <!-- <groupId>org.codehaus.mojo</groupId>-->
  1168. <!-- <artifactId>dbunit-maven-plugin</artifactId>-->
  1169. <!-- <configuration>-->
  1170. <!-- <src>src/main/resources/default-data.xml</src>-->
  1171. <!-- </configuration>-->
  1172. <!-- </plugin>-->
  1173. <!-- </plugins>-->
  1174. <!-- </build>-->
  1175. <!-- </profile>-->
  1176. <!-- </profiles>-->
  1177. </project>