智能仲裁后端服务

pom.xml 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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>ruoyi</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.8.6</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-system</artifactId>
  12. <description>
  13. system系统模块
  14. </description>
  15. <dependencies>
  16. <!-- 通用工具-->
  17. <dependency>
  18. <groupId>com.ruoyi</groupId>
  19. <artifactId>ruoyi-common</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.ruoyi</groupId>
  23. <artifactId>pay</artifactId>
  24. <version>1.0.0-SNAPSHOT</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.github.tencentyun</groupId>
  28. <artifactId>tls-sig-api-v2</artifactId>
  29. <version>1.2</version>
  30. </dependency>
  31. <!--通用mapper-->
  32. <dependency>
  33. <groupId>tk.mybatis</groupId>
  34. <artifactId>mapper-spring-boot-starter</artifactId>
  35. <version>2.1.5</version>
  36. </dependency>
  37. </dependencies>
  38. </project>