pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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>MSModule</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <relativePath>../../../super/MSModule</relativePath>
  10. </parent>
  11. <groupId>com.github.microservice.card</groupId>
  12. <artifactId>FullCardClient</artifactId>
  13. <name>FullCardClient</name>
  14. <properties>
  15. <java.version>17</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. <!-- 文档 -->
  30. <dependency>
  31. <groupId>com.github.microservice.components</groupId>
  32. <artifactId>Swagger2</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
  36. <dependency>
  37. <groupId>cn.hutool</groupId>
  38. <artifactId>hutool-all</artifactId>
  39. <version>5.8.20</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.github.wechatpay-apiv3</groupId>
  43. <artifactId>wechatpay-java</artifactId>
  44. <version>0.2.12</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.github.microservice.auth</groupId>
  48. <artifactId>AuthClient</artifactId>
  49. <version>${project.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.github.microservice.opengateway</groupId>
  53. <artifactId>OpenApiClient</artifactId>
  54. <version>${project.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>cn.afterturn</groupId>
  58. <artifactId>easypoi-base</artifactId>
  59. <version>4.1.0</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.zswl</groupId>
  63. <artifactId>ConfigModel</artifactId>
  64. <version>1.0.0-SNAPSHOT</version>
  65. </dependency>
  66. </dependencies>
  67. </project>