pom.xml 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  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.fuzamei</groupId>
  5. <artifactId>saicLogistics</artifactId>
  6. <packaging>war</packaging>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>saicLogistics Maven Webapp</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <spring.version>4.3.2.RELEASE</spring.version>
  13. <jackson.version>2.9.0</jackson.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>log4j</groupId>
  18. <artifactId>log4j</artifactId>
  19. <version>1.2.17</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>junit</groupId>
  23. <artifactId>junit</artifactId>
  24. <version>4.9</version>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>javax.servlet</groupId>
  29. <artifactId>javax.servlet-api</artifactId>
  30. <version>3.1.0</version>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.mockito</groupId>
  35. <artifactId>mockito-all</artifactId>
  36. <version>1.9.5</version>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework</groupId>
  41. <artifactId>spring-test</artifactId>
  42. <version> 3.2.4.RELEASE </version>
  43. <scope>provided</scope>
  44. </dependency>
  45. <!-- spring mvc jar start…… -->
  46. <!-- commons-logging-1.1.3.jar -->
  47. <dependency>
  48. <groupId>commons-logging</groupId>
  49. <artifactId>commons-logging</artifactId>
  50. <version>1.1.3</version>
  51. </dependency>
  52. <!-- spring-aop-version.RELEASE -->
  53. <dependency>
  54. <groupId>org.springframework</groupId>
  55. <artifactId>spring-aop</artifactId>
  56. <version>${spring.version}</version>
  57. </dependency>
  58. <!-- spring-beans-version.RELEASE.jar -->
  59. <dependency>
  60. <groupId>org.springframework</groupId>
  61. <artifactId>spring-beans</artifactId>
  62. <version>${spring.version}</version>
  63. </dependency>
  64. <!-- spring-context-version.RELEASE.jar -->
  65. <dependency>
  66. <groupId>org.springframework</groupId>
  67. <artifactId>spring-context</artifactId>
  68. <version>${spring.version}</version>
  69. </dependency>
  70. <!-- spring-core-version.RELEASE.jar -->
  71. <dependency>
  72. <groupId>org.springframework</groupId>
  73. <artifactId>spring-core</artifactId>
  74. <version>${spring.version}</version>
  75. </dependency>
  76. <!-- spring-expression-version.RELEASE.jar -->
  77. <dependency>
  78. <groupId>org.springframework</groupId>
  79. <artifactId>spring-expression</artifactId>
  80. <version>${spring.version}</version>
  81. </dependency>
  82. <!-- spring-web-version.RELEASE.jar -->
  83. <dependency>
  84. <groupId>org.springframework</groupId>
  85. <artifactId>spring-web</artifactId>
  86. <version>${spring.version}</version>
  87. </dependency>
  88. <!-- spring-webmvc-version.RELEASE.jar -->
  89. <dependency>
  90. <groupId>org.springframework</groupId>
  91. <artifactId>spring-webmvc</artifactId>
  92. <version>${spring.version}</version>
  93. </dependency>
  94. <!-- spring mvc jar end…… -->
  95. <!-- jackson jar start…… -->
  96. <dependency>
  97. <groupId>org.codehaus.jackson</groupId>
  98. <artifactId>jackson-mapper-asl</artifactId>
  99. <version>1.9.10</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.fasterxml.jackson.core</groupId>
  103. <artifactId>jackson-annotations</artifactId>
  104. <version>${jackson.version}</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.fasterxml.jackson.core</groupId>
  108. <artifactId>jackson-core</artifactId>
  109. <version>${jackson.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.fasterxml.jackson.core</groupId>
  113. <artifactId>jackson-databind</artifactId>
  114. <version>${jackson.version}</version>
  115. </dependency>
  116. <!-- jackson jar end…… -->
  117. <!-- redis jar start…… -->
  118. <dependency>
  119. <groupId>org.springframework.data</groupId>
  120. <artifactId>spring-data-redis</artifactId>
  121. <version>1.6.0.RELEASE</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>redis.clients</groupId>
  125. <artifactId>jedis</artifactId>
  126. <version>2.7.3</version>
  127. </dependency>
  128. <!-- redis jar end…… -->
  129. <!-- mybatis jar start…… -->
  130. <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis-spring -->
  131. <dependency>
  132. <groupId>org.mybatis</groupId>
  133. <artifactId>mybatis-spring</artifactId>
  134. <version>1.3.1</version>
  135. </dependency>
  136. <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
  137. <dependency>
  138. <groupId>org.mybatis</groupId>
  139. <artifactId>mybatis</artifactId>
  140. <version>3.4.5</version>
  141. </dependency>
  142. <!-- mybatis jar end…… -->
  143. <!-- 数据库+mybatis jar start…… -->
  144. <!-- https://mvnrepository.com/artifact/commons-dbcp/commons-dbcp -->
  145. <!-- 超高性能连接池 -->
  146. <dependency>
  147. <groupId>com.zaxxer</groupId>
  148. <artifactId>HikariCP</artifactId>
  149. <version>2.7.4</version>
  150. </dependency>
  151. <!-- dbcp连接池 -->
  152. <dependency>
  153. <groupId>commons-dbcp</groupId>
  154. <artifactId>commons-dbcp</artifactId>
  155. <version>1.2.2</version>
  156. </dependency>
  157. <!-- https://mvnrepository.com/artifact/commons-collections/commons-collections -->
  158. <dependency>
  159. <groupId>commons-collections</groupId>
  160. <artifactId>commons-collections</artifactId>
  161. <version>3.2.1</version>
  162. </dependency>
  163. <!-- https://mvnrepository.com/artifact/commons-pool/commons-pool -->
  164. <dependency>
  165. <groupId>commons-pool</groupId>
  166. <artifactId>commons-pool</artifactId>
  167. <version>1.6</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.apache.commons</groupId>
  171. <artifactId>commons-pool2</artifactId>
  172. <version>2.4.2</version>
  173. </dependency>
  174. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  175. <dependency>
  176. <groupId>mysql</groupId>
  177. <artifactId>mysql-connector-java</artifactId>
  178. <version>5.1.40</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.springframework</groupId>
  182. <artifactId>spring-jdbc</artifactId>
  183. <version>4.2.5.RELEASE</version>
  184. </dependency>
  185. <!-- 数据库+mybatis jar start…… -->
  186. <!-- fastJSON jar start…… -->
  187. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  188. <dependency>
  189. <groupId>com.alibaba</groupId>
  190. <artifactId>fastjson</artifactId>
  191. <version>1.2.38</version>
  192. </dependency>
  193. <!-- fastJSON jar end…… -->
  194. <!-- https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java -->
  195. <dependency>
  196. <groupId>com.google.protobuf</groupId>
  197. <artifactId>protobuf-java</artifactId>
  198. <version>3.1.0</version>
  199. </dependency>
  200. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  201. <dependency>
  202. <groupId>commons-io</groupId>
  203. <artifactId>commons-io</artifactId>
  204. <version>2.5</version>
  205. </dependency>
  206. <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
  207. <dependency>
  208. <groupId>commons-fileupload</groupId>
  209. <artifactId>commons-fileupload</artifactId>
  210. <version>1.3.1</version>
  211. </dependency>
  212. <!-- excel jar start…… -->
  213. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
  214. <dependency>
  215. <groupId>org.apache.poi</groupId>
  216. <artifactId>poi</artifactId>
  217. <version>3.15</version>
  218. </dependency>
  219. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  220. <dependency>
  221. <groupId>org.apache.poi</groupId>
  222. <artifactId>poi-ooxml</artifactId>
  223. <version>3.15</version>
  224. </dependency>
  225. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-schemas -->
  226. <dependency>
  227. <groupId>org.apache.poi</groupId>
  228. <artifactId>poi-ooxml-schemas</artifactId>
  229. <version>3.15</version>
  230. </dependency>
  231. <!-- excel jar end…… -->
  232. <!-- https://mvnrepository.com/artifact/org.quartz-scheduler/quartz -->
  233. <dependency>
  234. <groupId>org.quartz-scheduler</groupId>
  235. <artifactId>quartz</artifactId>
  236. <version>2.3.0</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>org.quartz-scheduler</groupId>
  240. <artifactId>quartz</artifactId>
  241. <version>2.2.1</version>
  242. </dependency>
  243. <!-- hibernate validator 参数校验 -->
  244. <dependency>
  245. <groupId>org.hibernate</groupId>
  246. <artifactId>hibernate-validator</artifactId>
  247. <version>5.3.4.Final</version>
  248. </dependency>
  249. <dependency>
  250. <groupId>javax.el</groupId>
  251. <artifactId>javax.el-api</artifactId>
  252. <version>2.2.4</version>
  253. </dependency>
  254. <dependency>
  255. <groupId>org.glassfish.web</groupId>
  256. <artifactId>javax.el</artifactId>
  257. <version>2.2.4</version>
  258. </dependency>
  259. </dependencies>
  260. <build>
  261. <finalName>saicLogistics</finalName>
  262. <plugins>
  263. <!-- skip test -->
  264. <plugin>
  265. <groupId>org.apache.maven.plugins</groupId>
  266. <artifactId>maven-surefire-plugin</artifactId>
  267. <configuration>
  268. <skip>true</skip>
  269. </configuration>
  270. </plugin>
  271. <!-- customerize your compiler -->
  272. <plugin>
  273. <groupId>org.apache.maven.plugins</groupId>
  274. <artifactId>maven-compiler-plugin</artifactId>
  275. <version>3.1</version>
  276. <configuration>
  277. <source>1.7</source>
  278. <target>1.7</target>
  279. <encoding>${project.build.sourceEncoding}</encoding>
  280. </configuration>
  281. </plugin>
  282. </plugins>
  283. </build>
  284. </project>