pom.xml 38 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244
  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. <defaultGoal>install</defaultGoal>
  868. <plugins>
  869. <plugin>
  870. <groupId>org.apache.maven.plugins</groupId>
  871. <artifactId>maven-resources-plugin</artifactId>
  872. <configuration>
  873. <encoding>UTF-8</encoding>
  874. <!-- 过滤后缀为pem、pfx的证书文件 -->
  875. <nonFilteredFileExtensions>
  876. <nonFilteredFileExtension>pem</nonFilteredFileExtension>
  877. <nonFilteredFileExtension>pfx</nonFilteredFileExtension>
  878. <nonFilteredFileExtension>p12</nonFilteredFileExtension>
  879. </nonFilteredFileExtensions>
  880. </configuration>
  881. </plugin>
  882. <plugin>
  883. <artifactId>maven-compiler-plugin</artifactId>
  884. <version>${maven.compile.plugin.version}</version>
  885. <configuration>
  886. <source>${java.version}</source>
  887. <target>${java.version}</target>
  888. </configuration>
  889. </plugin>
  890. <plugin>
  891. <groupId>org.mortbay.jetty</groupId>
  892. <artifactId>jetty-maven-plugin</artifactId>
  893. <version>${jetty.maven.plugin.version}</version>
  894. <configuration>
  895. <scanIntervalSeconds>0</scanIntervalSeconds>
  896. <webApp>
  897. <contextPath>/</contextPath>
  898. </webApp>
  899. </configuration>
  900. </plugin>
  901. <!-- clean-up previous hibernate-search indexed from integration tests,
  902. as there could be a lock -->
  903. <plugin>
  904. <artifactId>maven-clean-plugin</artifactId>
  905. <version>${maven.clean.plugin.version}</version>
  906. <configuration>
  907. <filesets>
  908. <fileset>
  909. <directory>${user.home}/${project.build.finalName}/index</directory>
  910. </fileset>
  911. </filesets>
  912. </configuration>
  913. </plugin>
  914. <!-- will package a ready-to-run app regarding hibernate-search index
  915. location -->
  916. <plugin>
  917. <artifactId>maven-war-plugin</artifactId>
  918. <version>${maven.war.plugin.version}</version>
  919. <configuration>
  920. <escapeString>\</escapeString>
  921. <webResources>
  922. <resource>
  923. <directory>src/main/resources/packaged</directory>
  924. <targetPath>WEB-INF/classes</targetPath>
  925. <filtering>true</filtering>
  926. <includes>
  927. <include>hibernate.properties</include>
  928. </includes>
  929. </resource>
  930. </webResources>
  931. </configuration>
  932. </plugin>
  933. <plugin>
  934. <groupId>org.codehaus.mojo</groupId>
  935. <artifactId>native2ascii-maven-plugin</artifactId>
  936. <version>${native2ascii.maven.plugin.version}</version>
  937. <executions>
  938. <execution>
  939. <id>native2ascii-utf8</id>
  940. <goals>
  941. <goal>native2ascii</goal>
  942. </goals>
  943. <configuration>
  944. <encoding>UTF8</encoding>
  945. <includes>
  946. <include>ApplicationResources_zh*.properties</include>
  947. <include>displaytag_zh*.properties</include>
  948. </includes>
  949. </configuration>
  950. </execution>
  951. </executions>
  952. </plugin>
  953. <plugin>
  954. <groupId>org.apache.maven.plugins</groupId>
  955. <artifactId>maven-compiler-plugin</artifactId>
  956. <configuration>
  957. <source>1.8</source>
  958. <target>1.8</target>
  959. </configuration>
  960. </plugin>
  961. </plugins>
  962. <resources>
  963. <resource>
  964. <directory>src/main/resources</directory>
  965. <filtering>true</filtering>
  966. </resource>
  967. </resources>
  968. <testResources>
  969. <testResource>
  970. <directory>src/test/resources</directory>
  971. <filtering>true</filtering>
  972. </testResource>
  973. <testResource>
  974. <directory>src/main/webapp</directory>
  975. <filtering>true</filtering>
  976. <includes>
  977. <include>**/*.xml</include>
  978. </includes>
  979. </testResource>
  980. </testResources>
  981. <pluginManagement>
  982. <plugins>
  983. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  984. <plugin>
  985. <groupId>org.eclipse.m2e</groupId>
  986. <artifactId>lifecycle-mapping</artifactId>
  987. <version>1.0.0</version>
  988. <configuration>
  989. <lifecycleMappingMetadata>
  990. <pluginExecutions>
  991. <pluginExecution>
  992. <pluginExecutionFilter>
  993. <groupId>
  994. org.codehaus.mojo
  995. </groupId>
  996. <artifactId>
  997. native2ascii-maven-plugin
  998. </artifactId>
  999. <versionRange>
  1000. [1.0-beta-1,)
  1001. </versionRange>
  1002. <goals>
  1003. <goal>native2ascii</goal>
  1004. </goals>
  1005. </pluginExecutionFilter>
  1006. <action>
  1007. <ignore></ignore>
  1008. </action>
  1009. </pluginExecution>
  1010. </pluginExecutions>
  1011. </lifecycleMappingMetadata>
  1012. </configuration>
  1013. </plugin>
  1014. </plugins>
  1015. </pluginManagement>
  1016. </build>
  1017. <!-- <reporting>-->
  1018. <!-- <plugins>-->
  1019. <!-- <plugin>-->
  1020. <!-- <artifactId>maven-changes-plugin</artifactId>-->
  1021. <!-- <version>${maven.changes.plugin.version}</version>-->
  1022. <!-- </plugin>-->
  1023. <!-- <plugin>-->
  1024. <!-- <groupId>org.codehaus.mojo</groupId>-->
  1025. <!-- <artifactId>cobertura-maven-plugin</artifactId>-->
  1026. <!-- <configuration>-->
  1027. <!-- <instrumentation>-->
  1028. <!-- <excludes>-->
  1029. <!-- <exclude>**/model/*.class</exclude>-->
  1030. <!-- </excludes>-->
  1031. <!-- </instrumentation>-->
  1032. <!-- </configuration>-->
  1033. <!-- <version>${cobertura.maven.plugin.version}</version>-->
  1034. <!-- </plugin>-->
  1035. <!-- <plugin>-->
  1036. <!-- <artifactId>maven-javadoc-plugin</artifactId>-->
  1037. <!-- <version>${maven.javadoc.plugin.version}</version>-->
  1038. <!-- </plugin>-->
  1039. <!-- <plugin>-->
  1040. <!-- <artifactId>maven-jxr-plugin</artifactId>-->
  1041. <!-- <version>${maven.jxr.plugin.version}</version>-->
  1042. <!-- </plugin>-->
  1043. <!-- <plugin>-->
  1044. <!-- <artifactId>maven-pmd-plugin</artifactId>-->
  1045. <!-- <configuration>-->
  1046. <!-- <linkXRef>true</linkXRef>-->
  1047. <!-- <targetJdk>${java.version}</targetJdk>-->
  1048. <!-- </configuration>-->
  1049. <!-- <version>${maven.pmd.plugin.version}</version>-->
  1050. <!-- </plugin>-->
  1051. <!-- <plugin>-->
  1052. <!-- <artifactId>maven-surefire-report-plugin</artifactId>-->
  1053. <!-- <version>${maven.surefire.report.plugin.version}</version>-->
  1054. <!-- </plugin>-->
  1055. <!-- <plugin>-->
  1056. <!-- <groupId>org.codehaus.mojo</groupId>-->
  1057. <!-- <artifactId>webtest-maven-plugin</artifactId>-->
  1058. <!-- <version>${webtest.maven.plugin.version}</version>-->
  1059. <!-- </plugin>-->
  1060. <!-- </plugins>-->
  1061. <!-- </reporting>-->
  1062. <!-- <profiles>-->
  1063. <!-- <profile>-->
  1064. <!-- <id>integration-test</id>-->
  1065. <!-- <activation>-->
  1066. <!-- <property>-->
  1067. <!-- <name>!skipTests</name>-->
  1068. <!-- </property>-->
  1069. <!-- </activation>-->
  1070. <!-- <build>-->
  1071. <!-- <plugins>-->
  1072. <!-- <plugin>-->
  1073. <!-- <groupId>org.codehaus.cargo</groupId>-->
  1074. <!-- <artifactId>cargo-maven2-plugin</artifactId>-->
  1075. <!-- <version>${cargo.version}</version>-->
  1076. <!-- <configuration>-->
  1077. <!-- <wait>${cargo.wait}</wait>-->
  1078. <!-- <container>-->
  1079. <!-- <containerId>${cargo.container}</containerId>-->
  1080. <!-- <home>${cargo.container.home}</home>-->
  1081. <!-- <zipUrlInstaller>-->
  1082. <!-- <url>${cargo.container.url}</url>-->
  1083. <!-- <extractDir>${installDir}</extractDir>-->
  1084. <!-- </zipUrlInstaller>-->
  1085. <!-- </container>-->
  1086. <!-- <configuration>-->
  1087. <!-- <home>${project.build.directory}/${cargo.container}/container</home>-->
  1088. <!-- <properties>-->
  1089. <!-- <cargo.hostname>${cargo.host}</cargo.hostname>-->
  1090. <!-- <cargo.servlet.port>${cargo.port}</cargo.servlet.port>-->
  1091. <!-- &lt;!&ndash; To prevent conflicts with already running instances &ndash;&gt;-->
  1092. <!-- <cargo.tomcat.ajp.port>8123</cargo.tomcat.ajp.port>-->
  1093. <!-- </properties>-->
  1094. <!-- </configuration>-->
  1095. <!-- </configuration>-->
  1096. <!-- <executions>-->
  1097. <!-- <execution>-->
  1098. <!-- <id>start-container</id>-->
  1099. <!-- <phase>pre-integration-test</phase>-->
  1100. <!-- <goals>-->
  1101. <!-- <goal>start</goal>-->
  1102. <!-- </goals>-->
  1103. <!-- </execution>-->
  1104. <!-- <execution>-->
  1105. <!-- <id>stop-container</id>-->
  1106. <!-- <phase>post-integration-test</phase>-->
  1107. <!-- <goals>-->
  1108. <!-- <goal>stop</goal>-->
  1109. <!-- </goals>-->
  1110. <!-- </execution>-->
  1111. <!-- </executions>-->
  1112. <!-- </plugin>-->
  1113. <!-- <plugin>-->
  1114. <!-- <groupId>org.codehaus.mojo</groupId>-->
  1115. <!-- <artifactId>webtest-maven-plugin</artifactId>-->
  1116. <!-- <version>${webtest.maven.plugin.version}</version>-->
  1117. <!-- <executions>-->
  1118. <!-- <execution>-->
  1119. <!-- <id>webtest-test</id>-->
  1120. <!-- <phase>integration-test</phase>-->
  1121. <!-- <goals>-->
  1122. <!-- <goal>test</goal>-->
  1123. <!-- </goals>-->
  1124. <!-- </execution>-->
  1125. <!-- <execution>-->
  1126. <!-- <id>webtest-verify</id>-->
  1127. <!-- <phase>verify</phase>-->
  1128. <!-- <goals>-->
  1129. <!-- <goal>verify-result</goal>-->
  1130. <!-- </goals>-->
  1131. <!-- </execution>-->
  1132. <!-- <execution>-->
  1133. <!-- <id>webtest-report-html</id>-->
  1134. <!-- <phase>post-integration-test</phase>-->
  1135. <!-- <goals>-->
  1136. <!-- <goal>report</goal>-->
  1137. <!-- </goals>-->
  1138. <!-- </execution>-->
  1139. <!-- </executions>-->
  1140. <!-- <configuration>-->
  1141. <!-- <host>${cargo.host}</host>-->
  1142. <!-- <port>${cargo.port}</port>-->
  1143. <!-- <sourcedirectory>src/test/resources</sourcedirectory>-->
  1144. <!-- <sourcefile>web-tests.xml</sourcefile>-->
  1145. <!-- <target>${webtest.target}</target>-->
  1146. <!-- <basepath>${project.build.finalName}</basepath>-->
  1147. <!-- <resultpath>target/webtest/webtest-results</resultpath>-->
  1148. <!-- <haltonfailure>false</haltonfailure>-->
  1149. <!-- <haltonerror>false</haltonerror>-->
  1150. <!-- <loglevel>fatal</loglevel>-->
  1151. <!-- </configuration>-->
  1152. <!-- </plugin>-->
  1153. <!-- </plugins>-->
  1154. <!-- </build>-->
  1155. <!-- </profile>-->
  1156. <!-- &lt;!&ndash; ================= Production Settings Profile ================= &ndash;&gt;-->
  1157. <!-- &lt;!&ndash; Use "-P prod" when you want to use the settings in this profile &ndash;&gt;-->
  1158. <!-- &lt;!&ndash; =============================================================== &ndash;&gt;-->
  1159. <!-- <profile>-->
  1160. <!-- <id>prod</id>-->
  1161. <!-- <build>-->
  1162. <!-- <plugins>-->
  1163. <!-- &lt;!&ndash; Override location of data file for DbUnit to load (doesn't have -->
  1164. <!-- negative keys) &ndash;&gt;-->
  1165. <!-- <plugin>-->
  1166. <!-- <groupId>org.codehaus.mojo</groupId>-->
  1167. <!-- <artifactId>dbunit-maven-plugin</artifactId>-->
  1168. <!-- <configuration>-->
  1169. <!-- <src>src/main/resources/default-data.xml</src>-->
  1170. <!-- </configuration>-->
  1171. <!-- </plugin>-->
  1172. <!-- </plugins>-->
  1173. <!-- </build>-->
  1174. <!-- </profile>-->
  1175. <!-- </profiles>-->
  1176. </project>