pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  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>com.qiqiim</groupId>
  5. <artifactId>qiqiim-server</artifactId>
  6. <packaging>war</packaging>
  7. <version>0.4.1</version>
  8. <name>qiqiim-server dev Webapp</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <springversion>4.3.7.RELEASE</springversion>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <java.version>1.7</java.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.fasterxml.jackson.core</groupId>
  18. <artifactId>jackson-core</artifactId>
  19. <version>2.9.2</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>junit</groupId>
  23. <artifactId>junit</artifactId>
  24. <version>3.8.1</version>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>commons-lang</groupId>
  29. <artifactId>commons-lang</artifactId>
  30. <version>2.1</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>cglib</groupId>
  34. <artifactId>cglib</artifactId>
  35. <version>2.1_3</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>commons-cli</groupId>
  39. <artifactId>commons-cli</artifactId>
  40. <version>1.2</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>commons-codec</groupId>
  44. <artifactId>commons-codec</artifactId>
  45. <version>1.9</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>commons-collections</groupId>
  49. <artifactId>commons-collections</artifactId>
  50. <version>3.1</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>commons-fileupload</groupId>
  54. <artifactId>commons-fileupload</artifactId>
  55. <version>1.3.1</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>commons-httpclient</groupId>
  59. <artifactId>commons-httpclient</artifactId>
  60. <version>3.1</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>commons-io</groupId>
  64. <artifactId>commons-io</artifactId>
  65. <version>2.4</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>commons-lang</groupId>
  69. <artifactId>commons-lang</artifactId>
  70. <version>2.4</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>commons-logging</groupId>
  74. <artifactId>commons-logging</artifactId>
  75. <version>1.1.1</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>commons-pool</groupId>
  79. <artifactId>commons-pool</artifactId>
  80. <version>1.6</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>commons-configuration</groupId>
  84. <artifactId>commons-configuration</artifactId>
  85. <version>1.10</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>dom4j</groupId>
  89. <artifactId>dom4j</artifactId>
  90. <version>1.6.1</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.alibaba</groupId>
  94. <artifactId>druid</artifactId>
  95. <version>1.0.31</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.alibaba</groupId>
  99. <artifactId>fastjson</artifactId>
  100. <version>1.2.30</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.freemarker</groupId>
  104. <artifactId>freemarker</artifactId>
  105. <version>2.3.20</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.httpcomponents</groupId>
  109. <artifactId>httpclient</artifactId>
  110. <version>4.3.6</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.httpcomponents</groupId>
  114. <artifactId>httpcore</artifactId>
  115. <version>4.3.3</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.apache.httpcomponents</groupId>
  119. <artifactId>httpmime</artifactId>
  120. <version>4.3.6</version>
  121. </dependency>
  122. <dependency>
  123. <artifactId>velocity</artifactId>
  124. <groupId>org.apache.velocity</groupId>
  125. <version>1.7</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.jsoup</groupId>
  129. <artifactId>jsoup</artifactId>
  130. <version>1.7.3</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.apache.geronimo.bundles</groupId>
  134. <artifactId>jstl</artifactId>
  135. <version>1.2_1</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.github.penggle</groupId>
  139. <artifactId>kaptcha</artifactId>
  140. <version>2.3.2</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>log4j</groupId>
  144. <artifactId>log4j</artifactId>
  145. <version>1.2.17</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.mybatis</groupId>
  149. <artifactId>mybatis</artifactId>
  150. <version>3.4.1</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.mybatis</groupId>
  154. <artifactId>mybatis-spring</artifactId>
  155. <version>1.3.0</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>mysql</groupId>
  159. <artifactId>mysql-connector-java</artifactId>
  160. <version>5.1.38</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.slf4j</groupId>
  164. <artifactId>slf4j-api</artifactId>
  165. <version>1.7.21</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.slf4j</groupId>
  169. <artifactId>slf4j-log4j12</artifactId>
  170. <version>1.7.21</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.springframework</groupId>
  174. <artifactId>spring-websocket</artifactId>
  175. <version>${springversion}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.springframework</groupId>
  179. <artifactId>spring-messaging</artifactId>
  180. <version>${springversion}</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.springframework</groupId>
  184. <artifactId>spring-aop</artifactId>
  185. <version>${springversion}</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.springframework</groupId>
  189. <artifactId>spring-aspects</artifactId>
  190. <version>${springversion}</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.springframework</groupId>
  194. <artifactId>spring-beans</artifactId>
  195. <version>${springversion}</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.springframework</groupId>
  199. <artifactId>spring-context</artifactId>
  200. <version>${springversion}</version>
  201. <type>jar</type>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.springframework</groupId>
  205. <artifactId>spring-context-support</artifactId>
  206. <version>${springversion}</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.springframework</groupId>
  210. <artifactId>spring-core</artifactId>
  211. <version>${springversion}</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.springframework</groupId>
  215. <artifactId>spring-expression</artifactId>
  216. <version>${springversion}</version>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.springframework</groupId>
  220. <artifactId>spring-jdbc</artifactId>
  221. <version>${springversion}</version>
  222. </dependency>
  223. <dependency>
  224. <groupId>org.springframework</groupId>
  225. <artifactId>spring-orm</artifactId>
  226. <version>${springversion}</version>
  227. </dependency>
  228. <dependency>
  229. <groupId>org.springframework</groupId>
  230. <artifactId>spring-tx</artifactId>
  231. <version>${springversion}</version>
  232. </dependency>
  233. <dependency>
  234. <groupId>org.springframework</groupId>
  235. <artifactId>spring-web</artifactId>
  236. <version>${springversion}</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>org.springframework</groupId>
  240. <artifactId>spring-webmvc</artifactId>
  241. <version>${springversion}</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>taglibs</groupId>
  245. <artifactId>standard</artifactId>
  246. <version>1.1.2</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>net.coobird</groupId>
  250. <artifactId>thumbnailator</artifactId>
  251. <version>0.4.8</version>
  252. </dependency>
  253. <dependency>
  254. <groupId>org.apache.xmlbeans</groupId>
  255. <artifactId>xmlbeans</artifactId>
  256. <version>2.6.0</version>
  257. </dependency>
  258. <dependency>
  259. <groupId>com.thoughtworks.xstream</groupId>
  260. <artifactId>xstream</artifactId>
  261. <version>1.3.1</version>
  262. </dependency>
  263. <dependency>
  264. <groupId>javax.servlet</groupId>
  265. <artifactId>javax.servlet-api</artifactId>
  266. <version>3.0.1</version>
  267. <scope>provided</scope>
  268. </dependency>
  269. <dependency>
  270. <groupId>javax.servlet.jsp</groupId>
  271. <artifactId>jsp-api</artifactId>
  272. <version>2.1</version>
  273. <scope>provided</scope>
  274. </dependency>
  275. <dependency>
  276. <groupId>com.alibaba</groupId>
  277. <artifactId>simpleimage</artifactId>
  278. <version>1.2.3</version>
  279. </dependency>
  280. <dependency>
  281. <groupId>io.netty</groupId>
  282. <artifactId>netty-all</artifactId>
  283. <version>4.1.6.Final</version>
  284. </dependency>
  285. <dependency>
  286. <groupId>com.google.protobuf</groupId>
  287. <artifactId>protobuf-java</artifactId>
  288. <version>3.4.0</version>
  289. </dependency>
  290. <dependency>
  291. <groupId>com.googlecode.protobuf-java-format</groupId>
  292. <artifactId>protobuf-java-format</artifactId>
  293. <version>1.4</version>
  294. </dependency>
  295. <dependency>
  296. <groupId>org.directwebremoting</groupId>
  297. <artifactId>dwr</artifactId>
  298. <version>3.0.2-RELEASE</version>
  299. </dependency>
  300. <dependency>
  301. <groupId>eu.bitwalker</groupId>
  302. <artifactId>UserAgentUtils</artifactId>
  303. <version>1.20</version>
  304. </dependency>
  305. <dependency>
  306. <groupId>io.jsonwebtoken</groupId>
  307. <artifactId>jjwt</artifactId>
  308. <version>0.6.0</version>
  309. </dependency>
  310. </dependencies>
  311. <build>
  312. <plugins>
  313. <plugin>
  314. <artifactId>maven-compiler-plugin</artifactId>
  315. <version>3.6.2</version>
  316. <configuration>
  317. <source>${java.version}</source>
  318. <target>${java.version}</target>
  319. <encoding>${project.build.sourceEncoding}</encoding>
  320. </configuration>
  321. </plugin>
  322. <plugin>
  323. <artifactId>maven-resources-plugin</artifactId>
  324. <version>3.0.2</version>
  325. <configuration>
  326. <encoding>${project.build.sourceEncoding}</encoding>
  327. </configuration>
  328. </plugin>
  329. <plugin>
  330. <groupId>org.apache.tomcat.maven</groupId>
  331. <artifactId>tomcat7-maven-plugin</artifactId>
  332. <version>2.1</version>
  333. <configuration>
  334. <port>8080</port>
  335. <path>/qiqiim-server</path>
  336. <uriEncoding>UTF-8</uriEncoding>
  337. <finalName>qiqiim-server</finalName>
  338. <server>tomcat7</server>
  339. </configuration>
  340. </plugin>
  341. </plugins>
  342. <resources>
  343. <resource>
  344. <directory>src/main/java</directory>
  345. <includes>
  346. <include>**/*.xml</include>
  347. </includes>
  348. </resource>
  349. <resource>
  350. <directory>src/main/resources</directory>
  351. <includes>
  352. <include>**/*.properties</include>
  353. <include>**/*.xml</include>
  354. <include>**/*.vm</include>
  355. </includes>
  356. <filtering>false</filtering>
  357. </resource>
  358. </resources>
  359. <finalName>qiqiim-server</finalName>
  360. </build>
  361. </project>