pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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-module-system</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>3.4.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeecg-system-start</artifactId>
  12. <dependencies>
  13. <!-- interlock 联锁模块 -->
  14. <dependency>
  15. <groupId>org.jeecgframework.boot</groupId>
  16. <artifactId>jeecg-module-interlock</artifactId>
  17. <version>${jeecgboot.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.kafka</groupId>
  21. <artifactId>spring-kafka</artifactId>
  22. <version>2.8.0</version>
  23. </dependency>
  24. <!--mqtt -->
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-integration</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.integration</groupId>
  31. <artifactId>spring-integration-stream</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.integration</groupId>
  35. <artifactId>spring-integration-mqtt</artifactId>
  36. </dependency>
  37. <!-- SYSTEM 系统管理模块 -->
  38. <dependency>
  39. <groupId>org.jeecgframework.boot</groupId>
  40. <artifactId>jeecg-system-biz</artifactId>
  41. <version>${jeecgboot.version}</version>
  42. </dependency>
  43. <!-- DEMO 示例模块 -->
  44. <dependency>
  45. <groupId>org.jeecgframework.boot</groupId>
  46. <artifactId>jeecg-module-demo</artifactId>
  47. <version>${jeecgboot.version}</version>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-maven-plugin</artifactId>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </project>