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