Rap分销系统Api
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 line
1.8KB

  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. <groupId>me.zhengjie</groupId>
  7. <artifactId>wjcy</artifactId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>wjcy-tools</artifactId>
  12. <name>工具模块</name>
  13. <properties>
  14. <mail.version>1.4.7</mail.version>
  15. <qiniu.version>[7.2.0, 7.2.99]</qiniu.version>
  16. <alipay.version>4.9.153.ALL</alipay.version>
  17. </properties>
  18. <dependencies>
  19. <!-- 同时需要common模块和logging模块只需要引入logging模块即可 -->
  20. <dependency>
  21. <groupId>me.zhengjie</groupId>
  22. <artifactId>wjcy-logging</artifactId>
  23. <version>1.0</version>
  24. </dependency>
  25. <!--邮件依赖-->
  26. <dependency>
  27. <groupId>javax.mail</groupId>
  28. <artifactId>mail</artifactId>
  29. <version>${mail.version}</version>
  30. </dependency>
  31. <!--七牛云存储-->
  32. <dependency>
  33. <groupId>com.qiniu</groupId>
  34. <artifactId>qiniu-java-sdk</artifactId>
  35. <version>${qiniu.version}</version>
  36. </dependency>
  37. <!--支付宝依赖-->
  38. <dependency>
  39. <groupId>com.alipay.sdk</groupId>
  40. <artifactId>alipay-sdk-java</artifactId>
  41. <version>${alipay.version}</version>
  42. </dependency>
  43. <!--xxl-job-->
  44. <dependency>
  45. <groupId>com.xuxueli</groupId>
  46. <artifactId>xxl-job-core</artifactId>
  47. <version>2.2.0</version>
  48. </dependency>
  49. </dependencies>
  50. </project>