pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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>ruoyi-vue-plus</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>4.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-weixin</artifactId>
  12. <packaging>pom</packaging>
  13. <modules>
  14. <module>ruoyi-weixin-miniapp</module>
  15. <module>ruoyi-weixin-mp</module>
  16. <module>ruoyi-weixin-pay</module>
  17. </modules>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <!-- Testing Dependencies -->
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-test</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>redis.clients</groupId>
  31. <artifactId>jedis</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.github.jedis-lock</groupId>
  35. <artifactId>jedis-lock</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.ruoyi</groupId>
  39. <artifactId>ruoyi-common</artifactId>
  40. </dependency>
  41. <!-- 微信支付 -->
  42. <dependency>
  43. <groupId>com.github.binarywang</groupId>
  44. <artifactId>weixin-java-pay</artifactId>
  45. </dependency>
  46. <!-- 微信公众号 -->
  47. <dependency>
  48. <groupId>com.github.binarywang</groupId>
  49. <artifactId>weixin-java-mp</artifactId>
  50. </dependency>
  51. <!-- 微信小程序 -->
  52. <dependency>
  53. <groupId>com.github.binarywang</groupId>
  54. <artifactId>weixin-java-miniapp</artifactId>
  55. </dependency>
  56. </dependencies>
  57. </project>