pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. <poi.version>3.15</poi.version>
  20. <xmlbeans.version>2.6.0</xmlbeans.version>
  21. <guava.version>17.0</guava.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>com.qiniu</groupId>
  26. <artifactId>qiniu-java-sdk</artifactId>
  27. <version>${qiniu-version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.aliyun.oss</groupId>
  31. <artifactId>aliyun-sdk-oss</artifactId>
  32. <version>${aliyun-oss-version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.qcloud</groupId>
  36. <artifactId>cos_api</artifactId>
  37. <version>${qcloud-cos-version}</version>
  38. </dependency>
  39. <!-- httpclient -->
  40. <dependency>
  41. <groupId>commons-httpclient</groupId>
  42. <artifactId>commons-httpclient</artifactId>
  43. <version>3.1</version>
  44. </dependency>
  45. <!-- json -->
  46. <dependency>
  47. <groupId>com.fasterxml.jackson.core</groupId>
  48. <artifactId>jackson-annotations</artifactId>
  49. <version>${jackson.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.fasterxml.jackson.core</groupId>
  53. <artifactId>jackson-core</artifactId>
  54. <version>${jackson.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.fasterxml.jackson.core</groupId>
  58. <artifactId>jackson-databind</artifactId>
  59. <version>${jackson.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>dom4j</groupId>
  63. <artifactId>dom4j</artifactId>
  64. <version>1.6.1</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>jstl</groupId>
  68. <artifactId>jstl</artifactId>
  69. <version>1.2</version>
  70. </dependency>
  71. <!-- POI依赖 ,处理EXCEL WORD PDF�?-->
  72. <dependency>
  73. <groupId>org.apache.poi</groupId>
  74. <artifactId>poi</artifactId>
  75. <version>${poi.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.poi</groupId>
  79. <artifactId>poi-ooxml</artifactId>
  80. <version>${poi.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.poi</groupId>
  84. <artifactId>poi-ooxml-schemas</artifactId>
  85. <version>${poi.version}</version>
  86. <exclusions>
  87. <exclusion>
  88. <artifactId>stax-api</artifactId>
  89. <groupId>stax</groupId>
  90. </exclusion>
  91. </exclusions>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.poi</groupId>
  95. <artifactId>poi-ooxml</artifactId>
  96. <version>${poi.version}</version>
  97. </dependency>
  98. <!-- redis clients -->
  99. <dependency>
  100. <groupId>redis.clients</groupId>
  101. <artifactId>jedis</artifactId>
  102. <version>2.8.2</version>
  103. </dependency>
  104. <!-- google java lib -->
  105. <dependency>
  106. <groupId>com.google.guava</groupId>
  107. <artifactId>guava</artifactId>
  108. <version>${guava.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.commons</groupId>
  112. <artifactId>commons-lang3</artifactId>
  113. <version>3.3.2</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.xmlbeans</groupId>
  117. <artifactId>xmlbeans</artifactId>
  118. <version>${xmlbeans.version}</version>
  119. <exclusions>
  120. <exclusion>
  121. <artifactId>stax-api</artifactId>
  122. <groupId>stax</groupId>
  123. </exclusion>
  124. </exclusions>
  125. </dependency>
  126. <!-- POI依赖 ,处理EXCEL WORD PDF�?-->
  127. </dependencies>
  128. </project>