pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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>iotkit-parent</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. </project>