pom.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>cn.dckeji</groupId>
  7. <artifactId>milk</artifactId>
  8. <version>1.0</version>
  9. <packaging>war</packaging>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <spring.version>4.3.12.RELEASE</spring.version>
  13. <junit.version>4.12</junit.version>
  14. <druid.version>1.1.6</druid.version>
  15. <fastjson.version>1.2.45</fastjson.version>
  16. <jackson.version>2.5.0</jackson.version>
  17. <mybaitsplus.version>2.2.0</mybaitsplus.version>
  18. <mysql.version>5.1.38</mysql.version>
  19. <log4j.version>1.2.17</log4j.version>
  20. <slf4j.version>1.7.19</slf4j.version>
  21. <aspectjweaver.version>1.8.8</aspectjweaver.version>
  22. <fileupload.version>1.3.1</fileupload.version>
  23. <jstl.version>1.2</jstl.version>
  24. <javax.servlet-api.version>3.1.0</javax.servlet-api.version>
  25. <commons-io.version>2.4</commons-io.version>
  26. <commons-fileupload.version>1.3.2</commons-fileupload.version>
  27. <commons-collections.version>3.2.2</commons-collections.version>
  28. <commons-lang3.version>3.3.2</commons-lang3.version>
  29. <commons-codec.version>1.10</commons-codec.version>
  30. <poi.version>3.17</poi.version>
  31. <springfox.version>2.5.0</springfox.version>
  32. <zxing.version>3.3.1</zxing.version>
  33. </properties>
  34. <dependencies>
  35. <dependency>
  36. <groupId>com.xiaoleilu</groupId>
  37. <artifactId>hutool-all</artifactId>
  38. <version>3.3.2</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.soecode.wx-tools</groupId>
  42. <artifactId>wx-tools</artifactId>
  43. <version>2.1.4-RELEASE</version>
  44. </dependency>
  45. <!-- https://mvnrepository.com/artifact/dom4j/dom4j -->
  46. <dependency>
  47. <groupId>dom4j</groupId>
  48. <artifactId>dom4j</artifactId>
  49. <version>1.6.1</version>
  50. </dependency>
  51. <!-- JUnit -->
  52. <dependency>
  53. <groupId>junit</groupId>
  54. <artifactId>junit</artifactId>
  55. <version>${junit.version}</version>
  56. <scope>test</scope>
  57. </dependency>
  58. <!-- Spring -->
  59. <dependency>
  60. <groupId>org.springframework</groupId>
  61. <artifactId>spring-core</artifactId>
  62. <version>${spring.version}</version>
  63. <type>jar</type>
  64. <scope>compile</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework</groupId>
  68. <artifactId>spring-context</artifactId>
  69. <version>${spring.version}</version>
  70. <type>jar</type>
  71. <scope>compile</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework</groupId>
  75. <artifactId>spring-context-support</artifactId>
  76. <version>${spring.version}</version>
  77. <type>jar</type>
  78. <scope>compile</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework</groupId>
  82. <artifactId>spring-tx</artifactId>
  83. <version>${spring.version}</version>
  84. <type>jar</type>
  85. <scope>compile</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework</groupId>
  89. <artifactId>spring-aop</artifactId>
  90. <version>${spring.version}</version>
  91. <type>jar</type>
  92. <scope>compile</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework</groupId>
  96. <artifactId>spring-aspects</artifactId>
  97. <version>${spring.version}</version>
  98. <type>jar</type>
  99. <scope>compile</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework</groupId>
  103. <artifactId>spring-beans</artifactId>
  104. <version>${spring.version}</version>
  105. <type>jar</type>
  106. <scope>compile</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework</groupId>
  110. <artifactId>spring-jdbc</artifactId>
  111. <version>${spring.version}</version>
  112. <type>jar</type>
  113. <scope>compile</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.springframework</groupId>
  117. <artifactId>spring-test</artifactId>
  118. <version>${spring.version}</version>
  119. <scope>test</scope>
  120. </dependency>
  121. <!-- Spring MVC -->
  122. <dependency>
  123. <groupId>org.springframework</groupId>
  124. <artifactId>spring-web</artifactId>
  125. <version>${spring.version}</version>
  126. <type>jar</type>
  127. <scope>compile</scope>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.springframework</groupId>
  131. <artifactId>spring-webmvc</artifactId>
  132. <version>${spring.version}</version>
  133. <type>jar</type>
  134. <scope>compile</scope>
  135. </dependency>
  136. <!-- AOP -->
  137. <dependency>
  138. <groupId>org.aspectj</groupId>
  139. <artifactId>aspectjweaver</artifactId>
  140. <version>${aspectjweaver.version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>aopalliance</groupId>
  144. <artifactId>aopalliance</artifactId>
  145. <version>1.0</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.aspectj</groupId>
  149. <artifactId>aspectjrt</artifactId>
  150. <version>1.7.4</version>
  151. </dependency>
  152. <!-- FileUpload -->
  153. <dependency>
  154. <groupId>commons-fileupload</groupId>
  155. <artifactId>commons-fileupload</artifactId>
  156. <version>${fileupload.version}</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>javax.servlet</groupId>
  160. <artifactId>jstl</artifactId>
  161. <version>${jstl.version}</version>
  162. </dependency>
  163. <!-- Mybatis-Plus -->
  164. <dependency>
  165. <groupId>com.baomidou</groupId>
  166. <artifactId>mybatis-plus</artifactId>
  167. <version>${mybaitsplus.version}</version>
  168. </dependency>
  169. <!-- Mysql -->
  170. <dependency>
  171. <groupId>mysql</groupId>
  172. <artifactId>mysql-connector-java</artifactId>
  173. <version>${mysql.version}</version>
  174. </dependency>
  175. <!-- Druid -->
  176. <dependency>
  177. <groupId>com.alibaba</groupId>
  178. <artifactId>druid</artifactId>
  179. <version>${druid.version}</version>
  180. </dependency>
  181. <!-- FastJson -->
  182. <dependency>
  183. <groupId>com.alibaba</groupId>
  184. <artifactId>fastjson</artifactId>
  185. <version>${fastjson.version}</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>com.fasterxml.jackson.core</groupId>
  189. <artifactId>jackson-annotations</artifactId>
  190. <version>${jackson.version}</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>com.fasterxml.jackson.core</groupId>
  194. <artifactId>jackson-core</artifactId>
  195. <version>${jackson.version}</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>com.fasterxml.jackson.core</groupId>
  199. <artifactId>jackson-databind</artifactId>
  200. <version>${jackson.version}</version>
  201. </dependency>
  202. <!-- Log -->
  203. <dependency>
  204. <groupId>log4j</groupId>
  205. <artifactId>log4j</artifactId>
  206. <version>${log4j.version}</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.slf4j</groupId>
  210. <artifactId>slf4j-api</artifactId>
  211. <version>${slf4j.version}</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.slf4j</groupId>
  215. <artifactId>slf4j-log4j12</artifactId>
  216. <version>${slf4j.version}</version>
  217. </dependency>
  218. <dependency>
  219. <groupId>cn.hutool</groupId>
  220. <artifactId>hutool-all</artifactId>
  221. <version>4.0.9</version>
  222. </dependency>
  223. <!-- servlet -->
  224. <!-- javax.servlet相关 -->
  225. <dependency>
  226. <groupId>javax.servlet</groupId>
  227. <artifactId>javax.servlet-api</artifactId>
  228. <version>${javax.servlet-api.version}</version>
  229. <scope>provided</scope>
  230. </dependency>
  231. <!--common 组件 -->
  232. <dependency>
  233. <groupId>commons-io</groupId>
  234. <artifactId>commons-io</artifactId>
  235. <version>${commons-io.version}</version>
  236. </dependency>
  237. <dependency>
  238. <groupId>commons-fileupload</groupId>
  239. <artifactId>commons-fileupload</artifactId>
  240. <version>${commons-fileupload.version}</version>
  241. </dependency>
  242. <dependency>
  243. <groupId>commons-collections</groupId>
  244. <artifactId>commons-collections</artifactId>
  245. <version>${commons-collections.version}</version>
  246. </dependency>
  247. <dependency>
  248. <groupId>org.apache.commons</groupId>
  249. <artifactId>commons-lang3</artifactId>
  250. <version>${commons-lang3.version}</version>
  251. </dependency>
  252. <dependency>
  253. <groupId>commons-codec</groupId>
  254. <artifactId>commons-codec</artifactId>
  255. <version>${commons-codec.version}</version>
  256. </dependency>
  257. <!-- 模板引擎 -->
  258. <dependency>
  259. <groupId>org.apache.velocity</groupId>
  260. <artifactId>velocity-engine-core</artifactId>
  261. <version>2.0</version>
  262. </dependency>
  263. <!-- https://mvnrepository.com/artifact/joda-time/joda-time -->
  264. <dependency>
  265. <groupId>joda-time</groupId>
  266. <artifactId>joda-time</artifactId>
  267. <version>2.9.9</version>
  268. </dependency>
  269. <!-- poi -->
  270. <dependency>
  271. <groupId>org.apache.poi</groupId>
  272. <artifactId>poi</artifactId>
  273. <version>${poi.version}</version>
  274. </dependency>
  275. <dependency>
  276. <groupId>org.apache.poi</groupId>
  277. <artifactId>poi-examples</artifactId>
  278. <version>${poi.version}</version>
  279. </dependency>
  280. <dependency>
  281. <groupId>org.apache.poi</groupId>
  282. <artifactId>poi-scratchpad</artifactId>
  283. <version>${poi.version}</version>
  284. </dependency>
  285. <dependency>
  286. <groupId>org.apache.poi</groupId>
  287. <artifactId>poi-ooxml</artifactId>
  288. <version>${poi.version}</version>
  289. </dependency>
  290. <dependency>
  291. <groupId>org.apache.poi</groupId>
  292. <artifactId>poi-ooxml-schemas</artifactId>
  293. <version>${poi.version}</version>
  294. </dependency>
  295. <dependency>
  296. <groupId>org.apache.poi</groupId>
  297. <artifactId>poi-excelant</artifactId>
  298. <version>${poi.version}</version>
  299. </dependency>
  300. <!--七牛-->
  301. <dependency>
  302. <groupId>com.qiniu</groupId>
  303. <artifactId>qiniu-java-sdk</artifactId>
  304. <version>7.2.6</version>
  305. <scope>compile</scope>
  306. </dependency>
  307. <dependency>
  308. <groupId>com.squareup.okhttp3</groupId>
  309. <artifactId>okhttp</artifactId>
  310. <version>3.3.1</version>
  311. <scope>compile</scope>
  312. </dependency>
  313. <dependency>
  314. <groupId>com.google.code.gson</groupId>
  315. <artifactId>gson</artifactId>
  316. <version>2.6.2</version>
  317. <scope>compile</scope>
  318. </dependency>
  319. <dependency>
  320. <groupId>com.qiniu</groupId>
  321. <artifactId>happy-dns-java</artifactId>
  322. <version>0.1.4</version>
  323. <scope>compile</scope>
  324. </dependency>
  325. <!--短信-->
  326. <dependency>
  327. <groupId>ccp</groupId>
  328. <artifactId>ccp</artifactId>
  329. <scope>system</scope>
  330. <version>1.0</version>
  331. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/CCP_REST_SMS_SDK_JAVA_v2.6.3r.jar</systemPath>
  332. </dependency>
  333. <!-- okhttp -->
  334. <dependency>
  335. <groupId>com.squareup.okhttp</groupId>
  336. <artifactId>okhttp</artifactId>
  337. <version>2.7.5</version>
  338. <!--<scope>provided</scope>-->
  339. </dependency>
  340. <!-- https://mvnrepository.com/artifact/com.squareup.okio/okio -->
  341. <dependency>
  342. <groupId>com.squareup.okio</groupId>
  343. <artifactId>okio</artifactId>
  344. <version>1.13.0</version>
  345. </dependency>
  346. <dependency>
  347. <groupId>io.jsonwebtoken</groupId>
  348. <artifactId>jjwt</artifactId>
  349. <version>0.9.0</version>
  350. </dependency>
  351. </dependencies>
  352. <build>
  353. <plugins>
  354. <plugin>
  355. <groupId>org.apache.maven.plugins</groupId>
  356. <artifactId>maven-compiler-plugin</artifactId>
  357. <version>3.1</version>
  358. <configuration>
  359. <source>1.7</source>
  360. <target>1.7</target>
  361. </configuration>
  362. </plugin>
  363. <plugin>
  364. <groupId>org.apache.tomcat.maven</groupId>
  365. <artifactId>tomcat7-maven-plugin</artifactId>
  366. <version>2.2</version>
  367. <configuration>
  368. <path>/milk</path>
  369. <port>8081</port>
  370. <uriEncoding>UTF-8</uriEncoding>
  371. </configuration>
  372. </plugin>
  373. </plugins>
  374. </build>
  375. </project>