pom.xml 17 KB

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