pom.xml 3.5 KB

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