pom.xml 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>keyuan</groupId>
  5. <artifactId>diaowen</artifactId>
  6. <packaging>war</packaging>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>diaowen Maven Webapp</name>
  9. <url>https://github.com/wkeyuan/DWSurvey</url>
  10. <dependencies>
  11. <dependency>
  12. <groupId>junit</groupId>
  13. <artifactId>junit</artifactId>
  14. <version>3.8.1</version>
  15. <scope>test</scope>
  16. </dependency>
  17. <!-- https://mvnrepository.com/artifact/com.sun.xml.security/xml-security-impl -->
  18. <dependency>
  19. <groupId>com.sun.xml.security</groupId>
  20. <artifactId>xml-security-impl</artifactId>
  21. <version>1.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.apache.geronimo.specs</groupId>
  25. <artifactId>geronimo-j2ee-management_1.1_spec</artifactId>
  26. <version>1.0.1</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.apache.geronimo.specs</groupId>
  30. <artifactId>geronimo-jms_1.1_spec</artifactId>
  31. <version>1.1.1</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.hamcrest</groupId>
  35. <artifactId>hamcrest-core</artifactId>
  36. <version>1.1</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.itextpdf</groupId>
  40. <artifactId>itextpdf</artifactId>
  41. <version>5.4.3</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.itextpdf</groupId>
  45. <artifactId>itext-asian</artifactId>
  46. <version>5.2.0</version>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/com.lowagie/itext -->
  49. <dependency>
  50. <groupId>com.lowagie</groupId>
  51. <artifactId>itext</artifactId>
  52. <version>2.0.8</version>
  53. </dependency>
  54. <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
  55. <dependency>
  56. <groupId>org.jsoup</groupId>
  57. <artifactId>jsoup</artifactId>
  58. <version>1.7.2</version>
  59. </dependency>
  60. <!-- https://mvnrepository.com/artifact/org.eclipse.birt.runtime.3_7_1/Tidy -->
  61. <dependency>
  62. <groupId>org.eclipse.birt.runtime.3_7_1</groupId>
  63. <artifactId>Tidy</artifactId>
  64. <version>1</version>
  65. </dependency>
  66. <!-- https://mvnrepository.com/artifact/com.octo.captcha/jcaptcha-all -->
  67. <dependency>
  68. <groupId>com.octo.captcha</groupId>
  69. <artifactId>jcaptcha-all</artifactId>
  70. <version>1.0-RC6</version>
  71. <exclusions>
  72. <exclusion>
  73. <artifactId>spring</artifactId>
  74. <groupId>org.springframework</groupId>
  75. </exclusion>
  76. </exclusions>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.sitemesh</groupId>
  80. <artifactId>sitemesh</artifactId>
  81. <version>3.0-alpha-2</version>
  82. </dependency>
  83. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
  84. <dependency>
  85. <groupId>org.apache.poi</groupId>
  86. <artifactId>poi</artifactId>
  87. <version>3.7</version>
  88. </dependency>
  89. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  90. <dependency>
  91. <groupId>mysql</groupId>
  92. <artifactId>mysql-connector-java</artifactId>
  93. <version>5.1.6</version>
  94. </dependency>
  95. <!-- https://mvnrepository.com/artifact/org.apache.velocity/velocity -->
  96. <dependency>
  97. <groupId>org.apache.velocity</groupId>
  98. <artifactId>velocity</artifactId>
  99. <version>1.7</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.jvnet</groupId>
  103. <artifactId>mimepull</artifactId>
  104. <version>1.4</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>javax.mail</groupId>
  108. <artifactId>mail</artifactId>
  109. <version>1.4.4</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.itextpdf.tool</groupId>
  113. <artifactId>xmlworker</artifactId>
  114. <version>5.4.3</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.apache.xbean</groupId>
  118. <artifactId>xbean-spring</artifactId>
  119. <version>3.12</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.tuckey</groupId>
  123. <artifactId>urlrewritefilter</artifactId>
  124. <version>4.0.3</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.apache.struts</groupId>
  128. <artifactId>struts2-spring-plugin</artifactId>
  129. <version>${org.struts2.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.apache.struts</groupId>
  133. <artifactId>struts2-core</artifactId>
  134. <version>${org.struts2.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.apache.struts</groupId>
  138. <artifactId>struts2-convention-plugin</artifactId>
  139. <version>${org.struts2.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.apache.struts</groupId>
  143. <artifactId>struts2-convention-plugin</artifactId>
  144. <version>${org.struts2.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.hibernate</groupId>
  148. <artifactId>hibernate-validator</artifactId>
  149. <version>4.2.0.Final</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.hibernate.javax.persistence</groupId>
  153. <artifactId>hibernate-jpa-2.0-api</artifactId>
  154. <version>1.0.1.Final</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.hibernate</groupId>
  158. <artifactId>hibernate-commons-annotations</artifactId>
  159. <version>3.2.0.Final</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.hibernate</groupId>
  163. <artifactId>hibernate-core</artifactId>
  164. <version>3.6.8.Final</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.baidubce</groupId>
  168. <artifactId>bce-java-sdk</artifactId>
  169. <version>0.10.5</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>com.aliyun.oss</groupId>
  173. <artifactId>aliyun-sdk-oss</artifactId>
  174. <version>2.0.3</version>
  175. </dependency>
  176. <!-- https://mvnrepository.com/artifact/org.xhtmlrenderer/core-renderer -->
  177. <dependency>
  178. <groupId>org.xhtmlrenderer</groupId>
  179. <artifactId>core-renderer</artifactId>
  180. <version>R8</version>
  181. </dependency>
  182. <!-- https://mvnrepository.com/artifact/org.json/json -->
  183. <dependency>
  184. <groupId>org.json</groupId>
  185. <artifactId>json</artifactId>
  186. <version>20160810</version>
  187. </dependency>
  188. <!-- https://mvnrepository.com/artifact/org.apache.activemq/activemq-all -->
  189. <dependency>
  190. <groupId>org.apache.activemq</groupId>
  191. <artifactId>activemq-all</artifactId>
  192. <version>5.8.0</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.apache.activemq</groupId>
  196. <artifactId>activeio-core</artifactId>
  197. <version>3.1.4</version>
  198. </dependency>
  199. <!-- Spring -->
  200. <!-- https://mvnrepository.com/artifact/org.springframework/spring-web -->
  201. <dependency>
  202. <groupId>org.springframework</groupId>
  203. <artifactId>spring-web</artifactId>
  204. <version>${org.springframework.version}</version>
  205. </dependency>
  206. <!-- https://mvnrepository.com/artifact/org.springframework/spring-tx -->
  207. <dependency>
  208. <groupId>org.springframework</groupId>
  209. <artifactId>spring-tx</artifactId>
  210. <version>${org.springframework.version}</version>
  211. </dependency>
  212. <!-- https://mvnrepository.com/artifact/org.springframework/spring-jms -->
  213. <dependency>
  214. <groupId>org.springframework</groupId>
  215. <artifactId>spring-jms</artifactId>
  216. <version>${org.springframework.version}</version>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.springframework</groupId>
  220. <artifactId>spring-context</artifactId>
  221. <version>${org.springframework.version}</version>
  222. </dependency>
  223. <dependency>
  224. <groupId>org.springframework</groupId>
  225. <artifactId>spring-test</artifactId>
  226. <version>${org.springframework.version}</version>
  227. </dependency>
  228. <dependency>
  229. <groupId>org.springframework</groupId>
  230. <artifactId>spring-context-support</artifactId>
  231. <version>${org.springframework.version}</version>
  232. </dependency>
  233. <dependency>
  234. <groupId>org.springframework</groupId>
  235. <artifactId>spring-oxm</artifactId>
  236. <version>${org.springframework.version}</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>org.springframework</groupId>
  240. <artifactId>spring-core</artifactId>
  241. <version>${org.springframework.version}</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>org.springframework</groupId>
  245. <artifactId>spring-beans</artifactId>
  246. <version>${org.springframework.version}</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>org.springframework</groupId>
  250. <artifactId>spring-expression</artifactId>
  251. <version>${org.springframework.version}</version>
  252. </dependency>
  253. <!-- https://mvnrepository.com/artifact/org.springframework/spring-aspects -->
  254. <dependency>
  255. <groupId>org.springframework</groupId>
  256. <artifactId>spring-aspects</artifactId>
  257. <version>${org.springframework.version}</version>
  258. </dependency>
  259. <!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
  260. <dependency>
  261. <groupId>org.springframework</groupId>
  262. <artifactId>spring-jdbc</artifactId>
  263. <version>${org.springframework.version}</version>
  264. </dependency>
  265. <!-- https://mvnrepository.com/artifact/org.springframework/spring-web -->
  266. <dependency>
  267. <groupId>org.springframework</groupId>
  268. <artifactId>spring-web</artifactId>
  269. <version>${org.springframework.version}</version>
  270. </dependency>
  271. <!-- https://mvnrepository.com/artifact/org.springframework/spring-orm -->
  272. <dependency>
  273. <groupId>org.springframework</groupId>
  274. <artifactId>spring-orm</artifactId>
  275. <version>${org.springframework.version}</version>
  276. </dependency>
  277. <!-- https://mvnrepository.com/artifact/cglib/cglib-nodep -->
  278. <dependency>
  279. <groupId>cglib</groupId>
  280. <artifactId>cglib-nodep</artifactId>
  281. <version>2.2.2</version>
  282. </dependency>
  283. <!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
  284. <dependency>
  285. <groupId>commons-logging</groupId>
  286. <artifactId>commons-logging</artifactId>
  287. <version>1.2</version>
  288. </dependency>
  289. <dependency>
  290. <groupId>commons-codec</groupId>
  291. <artifactId>commons-codec</artifactId>
  292. <version>1.4</version>
  293. </dependency>
  294. <dependency>
  295. <groupId>org.apache.commons</groupId>
  296. <artifactId>commons-lang3</artifactId>
  297. <version>3.6</version>
  298. </dependency>
  299. <dependency>
  300. <groupId>commons-lang</groupId>
  301. <artifactId>commons-lang</artifactId>
  302. <version>2.6</version>
  303. </dependency>
  304. <dependency>
  305. <groupId>commons-httpclient</groupId>
  306. <artifactId>commons-httpclient</artifactId>
  307. <version>3.0.1</version>
  308. </dependency>
  309. <dependency>
  310. <groupId>org.apache.httpcomponents</groupId>
  311. <artifactId>httpcore</artifactId>
  312. <version>4.4.5</version>
  313. </dependency>
  314. <dependency>
  315. <groupId>org.apache.httpcomponents</groupId>
  316. <artifactId>httpclient</artifactId>
  317. <version>4.5.2</version>
  318. </dependency>
  319. <dependency>
  320. <groupId>org.apache.httpcomponents</groupId>
  321. <artifactId>httpclient-cache</artifactId>
  322. <version>4.5.2</version>
  323. </dependency>
  324. <dependency>
  325. <groupId>org.apache.httpcomponents</groupId>
  326. <artifactId>httpcore-nio</artifactId>
  327. <version>4.4.5</version>
  328. </dependency>
  329. <dependency>
  330. <groupId>org.apache.httpcomponents</groupId>
  331. <artifactId>httpmime</artifactId>
  332. <version>4.5.2</version>
  333. </dependency>
  334. <dependency>
  335. <groupId>com.fasterxml.jackson.core</groupId>
  336. <artifactId>jackson-annotations</artifactId>
  337. <version>2.1.1</version>
  338. </dependency>
  339. <dependency>
  340. <groupId>com.fasterxml.jackson.core</groupId>
  341. <artifactId>jackson-core</artifactId>
  342. <version>2.1.1</version>
  343. </dependency>
  344. <dependency>
  345. <groupId>com.fasterxml.jackson.core</groupId>
  346. <artifactId>jackson-databind</artifactId>
  347. <version>2.1.1</version>
  348. </dependency>
  349. <dependency>
  350. <groupId>com.sun.jersey</groupId>
  351. <artifactId>jersey-client</artifactId>
  352. <version>1.19.1</version>
  353. </dependency>
  354. <!-- log4j2 -->
  355. <!-- https://mvnrepository.com/artifact/log4j/log4j -->
  356. <dependency>
  357. <groupId>log4j</groupId>
  358. <artifactId>log4j</artifactId>
  359. <version>1.2.17</version>
  360. </dependency>
  361. <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
  362. <dependency>
  363. <groupId>org.apache.logging.log4j</groupId>
  364. <artifactId>log4j-core</artifactId>
  365. <version>2.7</version>
  366. </dependency>
  367. <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api -->
  368. <dependency>
  369. <groupId>org.apache.logging.log4j</groupId>
  370. <artifactId>log4j-api</artifactId>
  371. <version>2.7</version>
  372. </dependency>
  373. <!--utils-->
  374. <dependency>
  375. <groupId>com.google.guava</groupId>
  376. <artifactId>guava</artifactId>
  377. <version>r09</version>
  378. </dependency>
  379. <dependency>
  380. <groupId>com.google.guava</groupId>
  381. <artifactId>guava</artifactId>
  382. <version>17.0</version>
  383. </dependency>
  384. <!-- 读取字节码包 -->
  385. <dependency>
  386. <groupId>org.javassist</groupId>
  387. <artifactId>javassist</artifactId>
  388. <version>3.15.0-GA</version>
  389. </dependency>
  390. <dependency>
  391. <groupId>org.apache.shiro</groupId>
  392. <artifactId>shiro-all</artifactId>
  393. <version>1.2.1</version>
  394. </dependency>
  395. <dependency>
  396. <groupId>commons-beanutils</groupId>
  397. <artifactId>commons-beanutils</artifactId>
  398. <version>1.9.2</version>
  399. </dependency>
  400. <dependency>
  401. <groupId>net.sf.dozer</groupId>
  402. <artifactId>dozer</artifactId>
  403. <version>5.3.2</version>
  404. </dependency>
  405. <dependency>
  406. <groupId>net.sf.json-lib</groupId>
  407. <artifactId>json-lib</artifactId>
  408. <version>2.4</version>
  409. <classifier>jdk15</classifier>
  410. </dependency>
  411. <dependency>
  412. <groupId>org.slf4j</groupId>
  413. <artifactId>slf4j-log4j12</artifactId>
  414. <version>1.6.0</version>
  415. </dependency>
  416. <dependency>
  417. <groupId>javax.servlet</groupId>
  418. <artifactId>jstl</artifactId>
  419. <version>1.2</version>
  420. <type>jar</type>
  421. </dependency>
  422. <dependency>
  423. <groupId>taglibs</groupId>
  424. <artifactId>standard</artifactId>
  425. <version>1.1.2</version>
  426. <type>jar</type>
  427. </dependency>
  428. <!-- servlet3 -->
  429. <dependency>
  430. <groupId>javax.servlet</groupId>
  431. <artifactId>javax.servlet-api</artifactId>
  432. <version>3.0.1</version>
  433. <scope>provided</scope>
  434. </dependency>
  435. <dependency>
  436. <groupId>javax.servlet.jsp</groupId>
  437. <artifactId>jsp-api</artifactId>
  438. <version>2.1</version>
  439. <scope>provided</scope>
  440. </dependency>
  441. <!-- https://mvnrepository.com/artifact/antlr/antlr -->
  442. <dependency>
  443. <groupId>antlr</groupId>
  444. <artifactId>antlr</artifactId>
  445. <version>2.7.7</version>
  446. </dependency>
  447. <!-- https://mvnrepository.com/artifact/org.antlr/antlr-runtime -->
  448. <dependency>
  449. <groupId>org.antlr</groupId>
  450. <artifactId>antlr-runtime</artifactId>
  451. <version>3.0.1</version>
  452. </dependency>
  453. <!-- local lib -->
  454. <dependency>
  455. <groupId>net.qrcode</groupId>
  456. <artifactId>qrcode</artifactId>
  457. <version>1.0</version>
  458. </dependency>
  459. <dependency>
  460. <groupId>net.xssprotect</groupId>
  461. <artifactId>xssprotest</artifactId>
  462. <version>1.0</version>
  463. </dependency>
  464. <dependency>
  465. <groupId>net.spssw</groupId>
  466. <artifactId>spssw</artifactId>
  467. <version>1.66</version>
  468. </dependency>
  469. <dependency>
  470. <groupId>com.baidu</groupId>
  471. <artifactId>ueditor</artifactId>
  472. <version>1.1.2</version>
  473. </dependency>
  474. </dependencies>
  475. <build>
  476. <finalName>diaowen</finalName>
  477. <plugins>
  478. <plugin>
  479. <groupId>org.apache.maven.plugins</groupId>
  480. <artifactId>maven-compiler-plugin</artifactId>
  481. <version>3.1</version>
  482. <configuration>
  483. <source>1.6</source>
  484. <target>1.6</target>
  485. </configuration>
  486. </plugin>
  487. <plugin>
  488. <groupId>org.apache.maven.plugins</groupId>
  489. <artifactId>maven-surefire-plugin</artifactId>
  490. <configuration>
  491. <skip>true</skip>
  492. </configuration>
  493. </plugin>
  494. </plugins>
  495. <resources>
  496. <resource>
  497. <directory>src/main/java</directory>
  498. <includes>
  499. <include>**/*.dat</include>
  500. </includes>
  501. <filtering>false</filtering>
  502. </resource>
  503. <resource>
  504. <directory>src/main/resources</directory>
  505. </resource>
  506. </resources>
  507. </build>
  508. <properties>
  509. <org.springframework.version>3.1.2.RELEASE</org.springframework.version>
  510. <org.struts2.version>2.5.13</org.struts2.version>
  511. <log4j.version>2.0</log4j.version>
  512. <commons.fileupload.version>1.2.1</commons.fileupload.version>
  513. <cxf.version>3.0.2</cxf.version>
  514. <!--<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  515. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  516. <maven.compiler.encoding>UTF-8</maven.compiler.encoding>-->
  517. </properties>
  518. <profiles>
  519. <profile>
  520. <id>jdk-1.8</id>
  521. <!-- 另外一种激活方式 -->
  522. <activation>
  523. <activeByDefault>true</activeByDefault>
  524. <jdk>1.8</jdk>
  525. </activation>
  526. <properties>
  527. <maven.compiler.source>1.8</maven.compiler.source>
  528. <maven.compiler.target>1.8</maven.compiler.target>
  529. </properties>
  530. </profile>
  531. </profiles>
  532. </project>