pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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.yonge.cooleshow</groupId>
  7. <artifactId>cooleshow-mall</artifactId>
  8. <version>1.0</version>
  9. </parent>
  10. <artifactId>mall-pay</artifactId>
  11. <version>1.0</version>
  12. <name>mall-pay</name>
  13. <description>mall-pay</description>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.huifu.adapay</groupId>
  20. <artifactId>adapay-java-sdk</artifactId>
  21. <version>1.2.10</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.yonge.cooleshow</groupId>
  25. <artifactId>mall-common</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.redisson</groupId>
  29. <artifactId>redisson</artifactId>
  30. <version>3.16.4</version>
  31. <scope>compile</scope>
  32. </dependency>
  33. <!-- redisson -->
  34. <dependency>
  35. <groupId>org.redisson</groupId>
  36. <artifactId>redisson-spring-boot-starter</artifactId>
  37. <version>3.16.4</version>
  38. </dependency>
  39. </dependencies>
  40. </project>