pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. <exclusions>
  24. <exclusion>
  25. <groupId>com.zaxxer</groupId>
  26. <artifactId>HikariCP-java7</artifactId>
  27. </exclusion>
  28. </exclusions>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-tx</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-integration</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.integration</groupId>
  44. <artifactId>spring-integration-mqtt</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.squareup.okhttp3</groupId>
  48. <artifactId>okhttp</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.projectlombok</groupId>
  52. <artifactId>lombok</artifactId>
  53. </dependency>
  54. <!--mqtt-->
  55. <dependency>
  56. <groupId>io.vertx</groupId>
  57. <artifactId>vertx-mqtt</artifactId>
  58. </dependency>
  59. <!--kafka-->
  60. <dependency>
  61. <groupId>io.vertx</groupId>
  62. <artifactId>vertx-kafka-client</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>cc.iotkit</groupId>
  66. <artifactId>iot-common-model</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>cc.iotkit</groupId>
  70. <artifactId>iot-common-core</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>cc.iotkit</groupId>
  74. <artifactId>iot-component-server</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>cc.iotkit</groupId>
  78. <artifactId>iot-message-core</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>cc.iotkit</groupId>
  82. <artifactId>iot-script-engine</artifactId>
  83. </dependency>
  84. </dependencies>
  85. <build>
  86. <plugins>
  87. <plugin>
  88. <groupId>org.apache.maven.plugins</groupId>
  89. <artifactId>maven-compiler-plugin</artifactId>
  90. <configuration>
  91. <source>${java.version}</source>
  92. <target>${java.version}</target>
  93. <encoding>utf8</encoding>
  94. </configuration>
  95. </plugin>
  96. </plugins>
  97. </build>
  98. </project>