pom.xml 6.2 KB

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