1
0

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