pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.github.microservice</groupId>
  7. <artifactId>PParent</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <relativePath>../../../super/PParent</relativePath>
  10. </parent>
  11. <groupId>com.zhongshu</groupId>
  12. <artifactId>RewardClient</artifactId>
  13. <name>RewardClient</name>
  14. <properties>
  15. <java.version>11</java.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.github.microservice</groupId>
  20. <artifactId>PCore</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <!--应用中心客户端-->
  24. <dependency>
  25. <groupId>com.github.microservice.components</groupId>
  26. <artifactId>ApplicationClient</artifactId>
  27. <version>${project.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.github.microservice.auth</groupId>
  31. <artifactId>AuthClient</artifactId>
  32. <version>${project.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.github.xiaoymin</groupId>
  36. <artifactId>knife4j-spring-boot-starter</artifactId>
  37. <version>3.0.3</version>
  38. </dependency>
  39. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
  40. <dependency>
  41. <groupId>cn.hutool</groupId>
  42. <artifactId>hutool-all</artifactId>
  43. <version>5.8.20</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.github.wechatpay-apiv3</groupId>
  47. <artifactId>wechatpay-java</artifactId>
  48. <version>0.2.12</version>
  49. </dependency>
  50. </dependencies>
  51. </project>