pom.xml 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  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>enterprise</groupId>
  5. <artifactId>enterprise</artifactId>
  6. <packaging>war</packaging>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <dependencies>
  9. <dependency>
  10. <groupId>junit</groupId>
  11. <artifactId>junit</artifactId>
  12. <version>3.8.1</version>
  13. <scope>test</scope>
  14. </dependency>
  15. <dependency>
  16. <groupId>commons-fileupload</groupId>
  17. <artifactId>commons-fileupload</artifactId>
  18. <version>1.3.1</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>net.sf.json-lib</groupId>
  22. <artifactId>json-lib</artifactId>
  23. <version>2.4</version>
  24. <classifier>jdk15</classifier>
  25. </dependency>
  26. <dependency>
  27. <groupId>javax.servlet</groupId>
  28. <artifactId>servlet-api</artifactId>
  29. <version>2.5</version>
  30. <scope>provided</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>jstl</groupId>
  34. <artifactId>jstl</artifactId>
  35. <version>1.2</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>taglibs</groupId>
  39. <artifactId>standard</artifactId>
  40. <version>1.1.2</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.mybatis</groupId>
  44. <artifactId>mybatis</artifactId>
  45. <version>3.0.6</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.mybatis</groupId>
  49. <artifactId>mybatis-spring</artifactId>
  50. <version>1.0.0-RC3</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. <version>5.0.8</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>commons-lang</groupId>
  59. <artifactId>commons-lang</artifactId>
  60. <version>2.5</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>net.sf.ehcache</groupId>
  64. <artifactId>ehcache</artifactId>
  65. <version>2.10.0</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.google.guava</groupId>
  69. <artifactId>guava</artifactId>
  70. <version>18.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework</groupId>
  74. <artifactId>spring-core</artifactId>
  75. <version>3.2.9.RELEASE</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework</groupId>
  79. <artifactId>spring-aop</artifactId>
  80. <version>3.2.9.RELEASE</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework</groupId>
  84. <artifactId>spring-beans</artifactId>
  85. <version>3.2.9.RELEASE</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework</groupId>
  89. <artifactId>spring-aspects</artifactId>
  90. <version>3.2.9.RELEASE</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework</groupId>
  94. <artifactId>spring-expression</artifactId>
  95. <version>3.2.9.RELEASE</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework</groupId>
  99. <artifactId>spring-jdbc</artifactId>
  100. <version>3.2.9.RELEASE</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework</groupId>
  104. <artifactId>spring-jms</artifactId>
  105. <version>3.2.9.RELEASE</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springframework</groupId>
  109. <artifactId>spring-context</artifactId>
  110. <version>3.2.9.RELEASE</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework</groupId>
  114. <artifactId>spring-context-support</artifactId>
  115. <version>3.2.9.RELEASE</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework</groupId>
  119. <artifactId>spring-orm</artifactId>
  120. <version>3.2.9.RELEASE</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.springframework</groupId>
  124. <artifactId>spring-oxm</artifactId>
  125. <version>3.2.9.RELEASE</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.springframework</groupId>
  129. <artifactId>spring-tx</artifactId>
  130. <version>3.2.9.RELEASE</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.springframework</groupId>
  134. <artifactId>spring-web</artifactId>
  135. <version>3.2.9.RELEASE</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>commons-logging</groupId>
  139. <artifactId>commons-logging</artifactId>
  140. <version>1.1.3</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>commons-lang</groupId>
  144. <artifactId>commons-lang</artifactId>
  145. <version>2.5</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>commons-io</groupId>
  149. <artifactId>commons-io</artifactId>
  150. <version>2.2</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.springframework.data</groupId>
  154. <artifactId>spring-data-redis</artifactId>
  155. <version>1.4.2.RELEASE</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.mchange</groupId>
  159. <artifactId>c3p0</artifactId>
  160. <version>0.9.5</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>com.mchange</groupId>
  164. <artifactId>mchange-commons-java</artifactId>
  165. <version>0.2.15</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.springframework</groupId>
  169. <artifactId>spring-web</artifactId>
  170. <version>3.2.9.RELEASE</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.springframework</groupId>
  174. <artifactId>spring-webmvc-portlet</artifactId>
  175. <version>3.2.9.RELEASE</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.springframework</groupId>
  179. <artifactId>spring-webmvc</artifactId>
  180. <version>3.2.9.RELEASE</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.springframework</groupId>
  184. <artifactId>spring-instrument</artifactId>
  185. <version>3.2.9.RELEASE</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.springframework</groupId>
  189. <artifactId>spring-instrument-tomcat</artifactId>
  190. <version>3.2.9.RELEASE</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.codehaus.jackson</groupId>
  194. <artifactId>jackson-mapper-asl</artifactId>
  195. <version>1.9.13</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.codehaus.jackson</groupId>
  199. <artifactId>jackson-core-asl</artifactId>
  200. <version>1.9.13</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>jsptags</groupId>
  204. <artifactId>pager-taglib</artifactId>
  205. <version>2.0</version>
  206. </dependency>
  207. <!-- <dependency>
  208. <groupId>org.aopalliance</groupId>
  209. <artifactId>com.springsource.org.aopalliance</artifactId>
  210. <version>1.0.0</version>
  211. </dependency>-->
  212. <dependency>
  213. <groupId>org.aspectj</groupId>
  214. <artifactId>aspectjweaver</artifactId>
  215. <version>1.8.4</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.slf4j</groupId>
  219. <artifactId>slf4j-api</artifactId>
  220. <version>1.7.22</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>org.slf4j</groupId>
  224. <artifactId>slf4j-log4j12</artifactId>
  225. <version>1.7.22</version>
  226. </dependency>
  227. <dependency>
  228. <groupId>org.slf4j</groupId>
  229. <artifactId>slf4j-simple</artifactId>
  230. <version>1.7.22</version>
  231. </dependency>
  232. </dependencies>
  233. <build>
  234. <finalName>enterprise</finalName>
  235. <plugins>
  236. <plugin>
  237. <groupId>org.apache.maven.plugins</groupId>
  238. <artifactId>maven-surefire-plugin</artifactId>
  239. <configuration>
  240. <skip>true</skip>
  241. </configuration>
  242. </plugin>
  243. <plugin>
  244. <groupId>org.apache.maven.plugins</groupId>
  245. <artifactId>maven-compiler-plugin</artifactId>
  246. <version>2.5.1</version>
  247. <configuration>
  248. <source>1.8</source>
  249. <target>1.8</target>
  250. <encoding>UTF-8</encoding>
  251. </configuration>
  252. </plugin>
  253. <plugin>
  254. <groupId>org.apache.tomcat.maven</groupId>
  255. <artifactId>tomcat7-maven-plugin</artifactId>
  256. <version>2.1</version>
  257. <configuration>
  258. <port>8080</port>
  259. <path>/enterprise</path>
  260. <uriEncoding>UTF-8</uriEncoding>
  261. <finalName>enterprise</finalName>
  262. <server>tomcat7</server>
  263. </configuration>
  264. </plugin>
  265. <plugin>
  266. <groupId>org.apache.maven.plugins</groupId>
  267. <artifactId>maven-war-plugin</artifactId>
  268. <version>2.1.1</version>
  269. </plugin>
  270. </plugins>
  271. </build>
  272. </project>