pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <!--
  2. Copyright © 2016-2023 The Thingsboard Authors
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. -->
  13. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  14. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  15. <modelVersion>4.0.0</modelVersion>
  16. <parent>
  17. <groupId>org.thingsboard</groupId>
  18. <version>3.6.1-SNAPSHOT</version>
  19. <artifactId>common</artifactId>
  20. </parent>
  21. <groupId>org.thingsboard.common</groupId>
  22. <artifactId>cluster-api</artifactId>
  23. <packaging>jar</packaging>
  24. <name>Thingsboard Server Common Cluster API</name>
  25. <url>https://thingsboard.io</url>
  26. <properties>
  27. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  28. <main.dir>${basedir}/../..</main.dir>
  29. </properties>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.thingsboard.common</groupId>
  33. <artifactId>data</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.thingsboard.common</groupId>
  37. <artifactId>message</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.thingsboard.common</groupId>
  41. <artifactId>stats</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.google.guava</groupId>
  45. <artifactId>guava</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>javax.annotation</groupId>
  49. <artifactId>javax.annotation-api</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.github.fge</groupId>
  53. <artifactId>json-schema-validator</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.slf4j</groupId>
  57. <artifactId>slf4j-api</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.slf4j</groupId>
  61. <artifactId>log4j-over-slf4j</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>ch.qos.logback</groupId>
  65. <artifactId>logback-core</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>ch.qos.logback</groupId>
  69. <artifactId>logback-classic</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.fasterxml.jackson.core</groupId>
  73. <artifactId>jackson-databind</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-autoconfigure</artifactId>
  78. <scope>provided</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.datastax.oss</groupId>
  82. <artifactId>java-driver-core</artifactId>
  83. <scope>provided</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>io.dropwizard.metrics</groupId>
  87. <artifactId>metrics-jmx</artifactId>
  88. <scope>provided</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.commons</groupId>
  92. <artifactId>commons-lang3</artifactId>
  93. <scope>provided</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-test</artifactId>
  98. <scope>test</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.junit.vintage</groupId>
  102. <artifactId>junit-vintage-engine</artifactId>
  103. <scope>test</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.awaitility</groupId>
  107. <artifactId>awaitility</artifactId>
  108. <scope>test</scope>
  109. </dependency>
  110. </dependencies>
  111. <build>
  112. <plugins>
  113. <plugin>
  114. <groupId>org.xolstice.maven.plugins</groupId>
  115. <artifactId>protobuf-maven-plugin</artifactId>
  116. </plugin>
  117. <plugin>
  118. <groupId>org.apache.maven.plugins</groupId>
  119. <artifactId>maven-source-plugin</artifactId>
  120. <executions>
  121. <execution>
  122. <id>attach-sources</id>
  123. <goals>
  124. <goal>jar</goal>
  125. </goals>
  126. </execution>
  127. </executions>
  128. </plugin>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-deploy-plugin</artifactId>
  132. <configuration>
  133. <skip>false</skip>
  134. </configuration>
  135. </plugin>
  136. </plugins>
  137. </build>
  138. </project>