pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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.ruoyi</groupId>
  8. <artifactId>ruoyi</artifactId>
  9. <version>3.8.5</version>
  10. </parent>
  11. <artifactId>ruoyi-menu-extend</artifactId>
  12. <description>
  13. 基于SqlLite数据库的菜单服务扩展
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.ruoyi</groupId>
  18. <artifactId>ruoyi-common</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.ruoyi</groupId>
  22. <artifactId>ruoyi-system</artifactId>
  23. </dependency>
  24. <!-- sqlite驱动包 -->
  25. <dependency>
  26. <groupId>org.xerial</groupId>
  27. <artifactId>sqlite-jdbc</artifactId>
  28. <version>3.40.0.0</version>
  29. </dependency>
  30. </dependencies>
  31. </project>