pom.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>com.ruoyi</groupId>
  7. <artifactId>ruoyi-api</artifactId>
  8. <version>3.5.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-api-ext</artifactId>
  12. <description>
  13. ruoyi-api-system扩展接口模块
  14. </description>
  15. <dependencies>
  16. <!-- RuoYi Common Core-->
  17. <dependency>
  18. <groupId>com.ruoyi</groupId>
  19. <artifactId>ruoyi-common-core</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>cn.hutool</groupId>
  23. <artifactId>hutool-all</artifactId>
  24. <version>5.7.22</version>
  25. </dependency>
  26. <!-- Druid -->
  27. <dependency>
  28. <groupId>com.alibaba</groupId>
  29. <artifactId>druid-spring-boot-starter</artifactId>
  30. <version>${druid.version}</version>
  31. </dependency>
  32. </dependencies>
  33. </project>