pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.kxs</groupId>
  8. <artifactId>kxs-common</artifactId>
  9. <version>1.1.0</version>
  10. </parent>
  11. <artifactId>kxs-common-pay</artifactId>
  12. <description>三方支付插件</description>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.kxs</groupId>
  21. <artifactId>kxs-common-core</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.kxs</groupId>
  25. <artifactId>kxs-user-api</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>cn.hutool</groupId>
  29. <artifactId>hutool-extra</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.alipay.sdk</groupId>
  33. <artifactId>alipay-sdk-java</artifactId>
  34. <version>4.39.48.ALL</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>cn.springboot</groupId>
  38. <artifactId>best-pay-sdk</artifactId>
  39. <version>1.3.7</version>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-compiler-plugin</artifactId>
  47. <configuration>
  48. <source>11</source>
  49. <target>11</target>
  50. </configuration>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. </project>