pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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.7</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. <!--mybatis plus-->
  22. <dependency>
  23. <groupId>com.baomidou</groupId>
  24. <artifactId>mybatis-plus-boot-starter</artifactId>
  25. </dependency>
  26. <!--easyexcel-->
  27. <dependency>
  28. <groupId>com.alibaba</groupId>
  29. <artifactId>easyexcel-core</artifactId>
  30. <version>3.3.2</version>
  31. <scope>compile</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>cn.hutool</groupId>
  35. <artifactId>hutool-all</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.integration</groupId>
  39. <artifactId>spring-integration-mqtt</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.projectlombok</groupId>
  43. <artifactId>lombok</artifactId>
  44. <scope>provided</scope>
  45. </dependency>
  46. </dependencies>
  47. </project>