调解系统后端服务

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. <!-- 代码生成-->
  43. <dependency>
  44. <groupId>com.ruoyi</groupId>
  45. <artifactId>ruoyi-generator</artifactId>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <plugins>
  50. <!-- 通用mapper代码生成器-->
  51. <plugin>
  52. <groupId>org.mybatis.generator</groupId>
  53. <artifactId>mybatis-generator-maven-plugin</artifactId>
  54. <version>1.3.6</version>
  55. <configuration>
  56. <configurationFile>
  57. ${basedir}/src/main/resources/generator/generatorConfig.xml
  58. </configurationFile>
  59. <overwrite>true</overwrite>
  60. <verbose>true</verbose>
  61. </configuration>
  62. <dependencies>
  63. <dependency>
  64. <groupId>mysql</groupId>
  65. <artifactId>mysql-connector-java</artifactId>
  66. <version>8.0.26</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>tk.mybatis</groupId>
  70. <artifactId>mapper</artifactId>
  71. <version>4.1.5</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.projectlombok</groupId>
  75. <artifactId>lombok</artifactId>
  76. <version>1.18.20</version>
  77. <scope>compile</scope>
  78. </dependency>
  79. </dependencies>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. </project>