pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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.1-SNAPSHOT</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. <!--====================第三方库===================-->
  41. <dependency>
  42. <groupId>org.springframework</groupId>
  43. <artifactId>spring-context-support</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.quartz-scheduler</groupId>
  47. <artifactId>quartz</artifactId>
  48. <exclusions>
  49. <exclusion>
  50. <groupId>com.zaxxer</groupId>
  51. <artifactId>HikariCP-java7</artifactId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework</groupId>
  61. <artifactId>spring-tx</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-integration</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.integration</groupId>
  69. <artifactId>spring-integration-mqtt</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.squareup.okhttp3</groupId>
  73. <artifactId>okhttp</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.projectlombok</groupId>
  77. <artifactId>lombok</artifactId>
  78. </dependency>
  79. <!--mqtt-->
  80. <dependency>
  81. <groupId>io.vertx</groupId>
  82. <artifactId>vertx-mqtt</artifactId>
  83. </dependency>
  84. <!--kafka-->
  85. <dependency>
  86. <groupId>io.vertx</groupId>
  87. <artifactId>vertx-kafka-client</artifactId>
  88. </dependency>
  89. </dependencies>
  90. <build>
  91. <plugins>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-compiler-plugin</artifactId>
  95. <configuration>
  96. <source>${java.version}</source>
  97. <target>${java.version}</target>
  98. <encoding>utf8</encoding>
  99. </configuration>
  100. </plugin>
  101. </plugins>
  102. </build>
  103. </project>