1
0

pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  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. <parent>
  6. <artifactId>kmall-pt</artifactId>
  7. <groupId>com.kmall</groupId>
  8. <version>3.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>kmall-common</artifactId>
  12. <packaging>jar</packaging>
  13. <description>公共模块</description>
  14. <properties>
  15. <qiniu-version>7.8.0</qiniu-version>
  16. <aliyun-oss-version>2.5.0</aliyun-oss-version>
  17. <qcloud-cos-version>4.4</qcloud-cos-version>
  18. <okhttp.version>3.4.1</okhttp.version>
  19. <jackson.version>2.5.1</jackson.version>
  20. <jackson.core.version>2.7.3</jackson.core.version>
  21. <poi.version>3.15</poi.version>
  22. <poi.ooxml.version>3.15</poi.ooxml.version>
  23. <xmlbeans.version>2.6.0</xmlbeans.version>
  24. <guava.version>17.0</guava.version>
  25. <bouncycastle.version>1.45</bouncycastle.version>
  26. <javax-servlet.version>4.0.1</javax-servlet.version>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>com.qiniu</groupId>
  31. <artifactId>qiniu-java-sdk</artifactId>
  32. <version>${qiniu-version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.aliyun.oss</groupId>
  36. <artifactId>aliyun-sdk-oss</artifactId>
  37. <version>${aliyun-oss-version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.qcloud</groupId>
  41. <artifactId>cos_api</artifactId>
  42. <version>${qcloud-cos-version}</version>
  43. </dependency>
  44. <!-- httpclient -->
  45. <dependency>
  46. <groupId>commons-httpclient</groupId>
  47. <artifactId>commons-httpclient</artifactId>
  48. <version>3.1</version>
  49. </dependency>
  50. <!-- HTTP工具 -->
  51. <dependency>
  52. <groupId>com.squareup.okhttp3</groupId>
  53. <artifactId>okhttp</artifactId>
  54. <version>${okhttp.version}</version>
  55. </dependency>
  56. <!-- json -->
  57. <dependency>
  58. <groupId>com.fasterxml.jackson.core</groupId>
  59. <artifactId>jackson-annotations</artifactId>
  60. <version>${jackson.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.fasterxml.jackson.core</groupId>
  64. <artifactId>jackson-core</artifactId>
  65. <version>${jackson.core.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.fasterxml.jackson.core</groupId>
  69. <artifactId>jackson-databind</artifactId>
  70. <version>${jackson.version}</version>
  71. </dependency>
  72. <!--<dependency>-->
  73. <!--<groupId>com.fasterxml.jackson.dataformat</groupId>-->
  74. <!--<artifactId>jackson-dataformat-xml</artifactId>-->
  75. <!--<version>2.8.10</version>-->
  76. <!--</dependency>-->
  77. <dependency>
  78. <groupId>dom4j</groupId>
  79. <artifactId>dom4j</artifactId>
  80. <version>1.6.1</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>jstl</groupId>
  84. <artifactId>jstl</artifactId>
  85. <version>1.2</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.quartz-scheduler</groupId>
  89. <artifactId>quartz</artifactId>
  90. <version>2.2.3</version>
  91. <exclusions>
  92. <exclusion>
  93. <artifactId>c3p0</artifactId>
  94. <groupId>c3p0</groupId>
  95. </exclusion>
  96. </exclusions>
  97. </dependency>
  98. <!-- POI依赖 ,处理EXCEL WORD PDF�?-->
  99. <dependency>
  100. <groupId>org.apache.poi</groupId>
  101. <artifactId>poi</artifactId>
  102. <version>${poi.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.poi</groupId>
  106. <artifactId>poi-ooxml</artifactId>
  107. <version>${poi.ooxml.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.poi</groupId>
  111. <artifactId>poi-ooxml-schemas</artifactId>
  112. <version>${poi.version}</version>
  113. <exclusions>
  114. <exclusion>
  115. <artifactId>stax-api</artifactId>
  116. <groupId>stax</groupId>
  117. </exclusion>
  118. </exclusions>
  119. </dependency>
  120. <!-- redis clients -->
  121. <dependency>
  122. <groupId>redis.clients</groupId>
  123. <artifactId>jedis</artifactId>
  124. <version>2.8.2</version>
  125. </dependency>
  126. <!-- google java lib -->
  127. <dependency>
  128. <groupId>com.google.guava</groupId>
  129. <artifactId>guava</artifactId>
  130. <version>${guava.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.apache.commons</groupId>
  134. <artifactId>commons-lang3</artifactId>
  135. <version>3.3.2</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.jxls</groupId>
  139. <artifactId>jxls</artifactId>
  140. <version>2.4.7</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.jxls</groupId>
  144. <artifactId>jxls-poi</artifactId>
  145. <version>1.0.16</version>
  146. </dependency>
  147. <!-- https://mvnrepository.com/artifact/org.jxls/jxls-jexcel -->
  148. <dependency>
  149. <groupId>org.jxls</groupId>
  150. <artifactId>jxls-jexcel</artifactId>
  151. <version>1.0.7</version>
  152. </dependency>
  153. <!-- https://mvnrepository.com/artifact/org.jxls/jxls-reader -->
  154. <dependency>
  155. <groupId>org.jxls</groupId>
  156. <artifactId>jxls-reader</artifactId>
  157. <version>2.0.5</version>
  158. </dependency>
  159. <!-- https://mvnrepository.com/artifact/org.java-websocket/Java-WebSocket -->
  160. <dependency>
  161. <groupId>org.java-websocket</groupId>
  162. <artifactId>Java-WebSocket</artifactId>
  163. <version>1.3.9</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.apache.xmlbeans</groupId>
  167. <artifactId>xmlbeans</artifactId>
  168. <version>${xmlbeans.version}</version>
  169. <exclusions>
  170. <exclusion>
  171. <artifactId>stax-api</artifactId>
  172. <groupId>stax</groupId>
  173. </exclusion>
  174. </exclusions>
  175. </dependency>
  176. <!-- POI依赖 ,处理EXCEL WORD PDF -->
  177. </dependencies>
  178. </project>