pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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>iot-module</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-rule-engine</artifactId>
  12. <description>
  13. 规则引擎模块,包含场景引擎、数据流转等
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework</groupId>
  18. <artifactId>spring-context-support</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.quartz-scheduler</groupId>
  22. <artifactId>quartz</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-tx</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-integration</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.integration</groupId>
  38. <artifactId>spring-integration-mqtt</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.squareup.okhttp3</groupId>
  42. <artifactId>okhttp</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.projectlombok</groupId>
  46. <artifactId>lombok</artifactId>
  47. </dependency>
  48. <!--mqtt-->
  49. <dependency>
  50. <groupId>io.vertx</groupId>
  51. <artifactId>vertx-mqtt</artifactId>
  52. </dependency>
  53. <!--kafka-->
  54. <dependency>
  55. <groupId>io.vertx</groupId>
  56. <artifactId>vertx-kafka-client</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>cc.iotkit</groupId>
  60. <artifactId>iot-model</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>cc.iotkit</groupId>
  64. <artifactId>iot-common-core</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>cc.iotkit</groupId>
  68. <artifactId>iot-component-server</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>cc.iotkit</groupId>
  72. <artifactId>iot-message-core</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>cc.iotkit</groupId>
  76. <artifactId>iot-script-engine</artifactId>
  77. </dependency>
  78. </dependencies>
  79. <build>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-compiler-plugin</artifactId>
  84. <configuration>
  85. <source>${java.version}</source>
  86. <target>${java.version}</target>
  87. </configuration>
  88. </plugin>
  89. </plugins>
  90. </build>
  91. </project>