pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>xchat</artifactId>
  6. <groupId>com.xchat</groupId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>xchat-common</artifactId>
  11. <!-- redis -->
  12. <dependencies>
  13. <dependency>
  14. <groupId>redis.clients</groupId>
  15. <artifactId>jedis</artifactId>
  16. <version>2.9.0</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.google.zxing</groupId>
  20. <artifactId>core</artifactId>
  21. <version>3.2.1</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.google.zxing</groupId>
  25. <artifactId>javase</artifactId>
  26. <version>3.2.1</version>
  27. </dependency>
  28. <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
  29. <dependency>
  30. <groupId>com.google.guava</groupId>
  31. <artifactId>guava</artifactId>
  32. <version>18.0</version>
  33. </dependency>
  34. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  35. <dependency>
  36. <groupId>org.apache.commons</groupId>
  37. <artifactId>commons-lang3</artifactId>
  38. <version>3.3.2</version>
  39. </dependency>
  40. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-math -->
  41. <dependency>
  42. <groupId>org.apache.commons</groupId>
  43. <artifactId>commons-math</artifactId>
  44. <version>2.0</version>
  45. </dependency>
  46. <!-- https://mvnrepository.com/artifact/com.thoughtworks.xstream/xstream -->
  47. <dependency>
  48. <groupId>com.thoughtworks.xstream</groupId>
  49. <artifactId>xstream</artifactId>
  50. <version>1.4.7</version>
  51. </dependency>
  52. <!--微信支付sdk -->
  53. <!-- https://mvnrepository.com/artifact/com.github.wxpay/wxpay-sdk -->
  54. <dependency>
  55. <groupId>com.github.wxpay</groupId>
  56. <artifactId>wxpay-sdk</artifactId>
  57. <version>0.0.3</version>
  58. </dependency>
  59. <!-- https://mvnrepository.com/artifact/commons-httpclient/commons-httpclient -->
  60. <dependency>
  61. <groupId>commons-httpclient</groupId>
  62. <artifactId>commons-httpclient</artifactId>
  63. <version>3.1</version>
  64. </dependency>
  65. </dependencies>
  66. </project>