pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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>0.5.3</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>cc.iotkit</groupId>
  18. <artifactId>iot-data-model</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>cc.iotkit</groupId>
  22. <artifactId>iot-common-core</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>cc.iotkit</groupId>
  26. <artifactId>iot-data-service</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>cc.iotkit</groupId>
  30. <artifactId>iot-temporal-service</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>cc.iotkit</groupId>
  34. <artifactId>iot-message-core</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>cc.iotkit</groupId>
  38. <artifactId>iot-script-engine</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>cc.iotkit</groupId>
  42. <artifactId>iot-message-notify</artifactId>
  43. </dependency>
  44. <!--====================第三方库===================-->
  45. <dependency>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>spring-context-support</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.quartz-scheduler</groupId>
  51. <artifactId>quartz</artifactId>
  52. <exclusions>
  53. <exclusion>
  54. <groupId>com.zaxxer</groupId>
  55. <artifactId>HikariCP-java7</artifactId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework</groupId>
  65. <artifactId>spring-tx</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-integration</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.integration</groupId>
  73. <artifactId>spring-integration-mqtt</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.squareup.okhttp3</groupId>
  77. <artifactId>okhttp</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.projectlombok</groupId>
  81. <artifactId>lombok</artifactId>
  82. </dependency>
  83. <!--mqtt-->
  84. <dependency>
  85. <groupId>io.vertx</groupId>
  86. <artifactId>vertx-mqtt</artifactId>
  87. </dependency>
  88. <!--kafka-->
  89. <dependency>
  90. <groupId>io.vertx</groupId>
  91. <artifactId>vertx-kafka-client</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>cc.iotkit</groupId>
  95. <artifactId>iot-plugin-core</artifactId>
  96. </dependency>
  97. </dependencies>
  98. <build>
  99. <plugins>
  100. <plugin>
  101. <groupId>org.apache.maven.plugins</groupId>
  102. <artifactId>maven-compiler-plugin</artifactId>
  103. <configuration>
  104. <source>${java.version}</source>
  105. <target>${java.version}</target>
  106. <encoding>utf8</encoding>
  107. </configuration>
  108. </plugin>
  109. </plugins>
  110. </build>
  111. </project>