pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright © 2016-2023 The Thingsboard Authors
  4. Licensed under the Apache License, Version 2.0 (the "License");
  5. you may not use this file except in compliance with the License.
  6. You may obtain a copy of the License at
  7. http://www.apache.org/licenses/LICENSE-2.0
  8. Unless required by applicable law or agreed to in writing, software
  9. distributed under the License is distributed on an "AS IS" BASIS,
  10. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. See the License for the specific language governing permissions and
  12. limitations under the License.
  13. -->
  14. <project xmlns="http://maven.apache.org/POM/4.0.0"
  15. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  16. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  17. <modelVersion>4.0.0</modelVersion>
  18. <parent>
  19. <groupId>org.thingsboard</groupId>
  20. <version>3.6.1-SNAPSHOT</version>
  21. <artifactId>rule-engine</artifactId>
  22. </parent>
  23. <groupId>org.thingsboard.rule-engine</groupId>
  24. <artifactId>rule-engine-components</artifactId>
  25. <packaging>jar</packaging>
  26. <name>Thingsboard Rule Engine Components</name>
  27. <url>https://thingsboard.io</url>
  28. <properties>
  29. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  30. <main.dir>${basedir}/../..</main.dir>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.thingsboard.common</groupId>
  35. <artifactId>util</artifactId>
  36. <scope>provided</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.thingsboard</groupId>
  40. <artifactId>dao</artifactId>
  41. <scope>provided</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.thingsboard.common.transport</groupId>
  45. <artifactId>transport-api</artifactId>
  46. <scope>provided</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>ch.qos.logback</groupId>
  50. <artifactId>logback-core</artifactId>
  51. <scope>provided</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>ch.qos.logback</groupId>
  55. <artifactId>logback-classic</artifactId>
  56. <scope>provided</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.thingsboard.rule-engine</groupId>
  60. <artifactId>rule-engine-api</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.thingsboard</groupId>
  64. <artifactId>netty-mqtt</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.google.guava</groupId>
  68. <artifactId>guava</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.google.code.gson</groupId>
  72. <artifactId>gson</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework</groupId>
  76. <artifactId>spring-web</artifactId>
  77. <scope>provided</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.kafka</groupId>
  81. <artifactId>kafka-clients</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.amazonaws</groupId>
  85. <artifactId>aws-java-sdk-sns</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.google.cloud</groupId>
  89. <artifactId>google-cloud-pubsub</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.google.api.grpc</groupId>
  93. <artifactId>proto-google-common-protos</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.rabbitmq</groupId>
  97. <artifactId>amqp-client</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.bouncycastle</groupId>
  101. <artifactId>bcpkix-jdk15on</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.locationtech.spatial4j</groupId>
  105. <artifactId>spatial4j</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.locationtech.jts</groupId>
  109. <artifactId>jts-core</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.sun.mail</groupId>
  113. <artifactId>javax.mail</artifactId>
  114. <scope>provided</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>net.objecthunter</groupId>
  118. <artifactId>exp4j</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.springframework.boot</groupId>
  122. <artifactId>spring-boot-starter-test</artifactId>
  123. <scope>test</scope>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.junit.vintage</groupId>
  127. <artifactId>junit-vintage-engine</artifactId>
  128. <scope>test</scope>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.awaitility</groupId>
  132. <artifactId>awaitility</artifactId>
  133. <scope>test</scope>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.mock-server</groupId>
  137. <artifactId>mockserver-netty</artifactId>
  138. <scope>test</scope>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.mock-server</groupId>
  142. <artifactId>mockserver-client-java</artifactId>
  143. <scope>test</scope>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.jayway.jsonpath</groupId>
  147. <artifactId>json-path</artifactId>
  148. </dependency>
  149. </dependencies>
  150. <build>
  151. <plugins>
  152. <plugin>
  153. <groupId>org.apache.maven.plugins</groupId>
  154. <artifactId>maven-dependency-plugin</artifactId>
  155. </plugin>
  156. <plugin>
  157. <groupId>org.codehaus.mojo</groupId>
  158. <artifactId>build-helper-maven-plugin</artifactId>
  159. </plugin>
  160. </plugins>
  161. </build>
  162. </project>