1
0

pom.xml 6.8 KB

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