1
0

pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. <!-- mqtt -->
  19. <dependency>
  20. <groupId>org.springframework.integration</groupId>
  21. <artifactId>spring-integration-mqtt</artifactId>
  22. </dependency>
  23. <!-- rabbit mqtt -->
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-amqp</artifactId>
  27. </dependency>
  28. <!-- websocket -->
  29. <dependency>
  30. <groupId>org.java-websocket</groupId>
  31. <artifactId>Java-WebSocket</artifactId>
  32. <version>1.3.5</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.jeecgframework.boot</groupId>
  36. <artifactId>jeecg-module-gather</artifactId>
  37. <version>${jeecgboot.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.jeecgframework.boot</groupId>
  41. <artifactId>jeecg-system-biz</artifactId>
  42. </dependency>
  43. </dependencies>
  44. </project>