调解系统后端服务

pom.xml 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. <dependency>
  32. <groupId>javax.persistence</groupId>
  33. <artifactId>persistence-api</artifactId>
  34. <version>1.0</version>
  35. </dependency>
  36. <!--通用mapper-->
  37. <dependency>
  38. <groupId>tk.mybatis</groupId>
  39. <artifactId>mapper-spring-boot-starter</artifactId>
  40. <version>2.1.5</version>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-maven-plugin</artifactId>
  48. <configuration>
  49. <excludes>
  50. <exclude>
  51. <groupId>org.projectlombok</groupId>
  52. <artifactId>lombok</artifactId>
  53. </exclude>
  54. </excludes>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>