pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. <groupId>org.dromara</groupId>
  7. <artifactId>ruoyi-common</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-common-mybatis</artifactId>
  12. <description>
  13. ruoyi-common-mybatis 数据库服务
  14. </description>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-compiler-plugin</artifactId>
  20. <configuration>
  21. <source>16</source>
  22. <target>16</target>
  23. </configuration>
  24. </plugin>
  25. </plugins>
  26. </build>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.dromara</groupId>
  30. <artifactId>ruoyi-common-core</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.dromara</groupId>
  34. <artifactId>ruoyi-common-satoken</artifactId>
  35. </dependency>
  36. <!-- dynamic-datasource 多数据源-->
  37. <dependency>
  38. <groupId>com.baomidou</groupId>
  39. <artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.baomidou</groupId>
  43. <artifactId>mybatis-plus-boot-starter</artifactId>
  44. </dependency>
  45. <!-- sql性能分析插件 -->
  46. <dependency>
  47. <groupId>p6spy</groupId>
  48. <artifactId>p6spy</artifactId>
  49. </dependency>
  50. </dependencies>
  51. </project>