pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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>jeecg-boot-parent</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>3.7.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeecg-module-conn</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.jeecgframework.boot</groupId>
  15. <artifactId>jeecg-boot-base-core</artifactId>
  16. <version>${jeecgboot.version}</version>
  17. </dependency>
  18. <!-- EasyExcel 核心依赖 -->
  19. <dependency>
  20. <groupId>com.alibaba</groupId>
  21. <artifactId>easyexcel</artifactId>
  22. <version>3.3.2</version>
  23. </dependency>
  24. <!-- mqtt -->
  25. <dependency>
  26. <groupId>org.springframework.integration</groupId>
  27. <artifactId>spring-integration-mqtt</artifactId>
  28. </dependency>
  29. <!-- rabbit mqtt -->
  30. <!-- <dependency>-->
  31. <!-- <groupId>org.springframework.boot</groupId>-->
  32. <!-- <artifactId>spring-boot-starter-amqp</artifactId>-->
  33. <!-- </dependency>-->
  34. <!-- websocket -->
  35. <dependency>
  36. <groupId>org.java-websocket</groupId>
  37. <artifactId>Java-WebSocket</artifactId>
  38. <version>1.3.5</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.jeecgframework.boot</groupId>
  42. <artifactId>jeecg-system-biz</artifactId>
  43. </dependency>
  44. </dependencies>
  45. </project>