pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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>mp</artifactId>
  7. <groupId>com.qs.mp</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>mp-service</artifactId>
  12. <description>
  13. system系统模块
  14. </description>
  15. <dependencies>
  16. <!-- 通用工具-->
  17. <dependency>
  18. <groupId>com.qs.mp</groupId>
  19. <artifactId>mp-common</artifactId>
  20. </dependency>
  21. <!--Redis数据库 -->
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-data-redis</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.integration</groupId>
  28. <artifactId>spring-integration-redis</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>redis.clients</groupId>
  32. <artifactId>jedis</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.baomidou</groupId>
  36. <artifactId>mybatis-plus-generator</artifactId>
  37. </dependency>
  38. <!--Redis数据库 -->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-data-redis</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.integration</groupId>
  45. <artifactId>spring-integration-redis</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>redis.clients</groupId>
  49. <artifactId>jedis</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.github.wechatpay-apiv3</groupId>
  53. <artifactId>wechatpay-java-core</artifactId>
  54. <version>0.2.8</version>
  55. <scope>compile</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.github.wechatpay-apiv3</groupId>
  59. <artifactId>wechatpay-java</artifactId>
  60. <version>0.2.8</version>
  61. <scope>compile</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.dougong</groupId>
  65. <artifactId>dougong</artifactId>
  66. <version>1.0.0</version>
  67. <scope>system</scope>
  68. <systemPath>${project.basedir}/libs/dougong/dg-java-sdk-3.0.8.jar</systemPath>
  69. </dependency>
  70. </dependencies>
  71. </project>