pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  15. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  16. <modelVersion>4.0.0</modelVersion>
  17. <parent>
  18. <groupId>org.thingsboard</groupId>
  19. <version>3.6.1-SNAPSHOT</version>
  20. <artifactId>thingsboard</artifactId>
  21. </parent>
  22. <artifactId>monitoring</artifactId>
  23. <name>ThingsBoard Monitoring Service</name>
  24. <packaging>jar</packaging>
  25. <properties>
  26. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  27. <main.dir>${basedir}/..</main.dir>
  28. <pkg.type>java</pkg.type>
  29. <pkg.disabled>false</pkg.disabled>
  30. <pkg.process-resources.phase>process-resources</pkg.process-resources.phase>
  31. <pkg.package.phase>package</pkg.package.phase>
  32. <pkg.name>tb-monitoring</pkg.name>
  33. <pkg.copyInstallScripts>false</pkg.copyInstallScripts>
  34. <pkg.win.dist>${project.build.directory}/windows</pkg.win.dist>
  35. <pkg.implementationTitle>ThingsBoard Monitoring Service</pkg.implementationTitle>
  36. <pkg.mainClass>org.thingsboard.monitoring.ThingsboardMonitoringApplication</pkg.mainClass>
  37. <californium.version>2.6.1</californium.version>
  38. <leshan.version>2.0.0-M4</leshan.version>
  39. </properties>
  40. <dependencies>
  41. <dependency>
  42. <groupId>org.thingsboard.common</groupId>
  43. <artifactId>data</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.thingsboard.common</groupId>
  47. <artifactId>util</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.thingsboard</groupId>
  51. <artifactId>rest-client</artifactId>
  52. <scope>compile</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.eclipse.californium</groupId>
  60. <artifactId>californium-core</artifactId>
  61. <version>${californium.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.eclipse.californium</groupId>
  65. <artifactId>scandium</artifactId>
  66. <version>${californium.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.eclipse.paho</groupId>
  70. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.httpcomponents</groupId>
  74. <artifactId>httpclient</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.eclipse.leshan</groupId>
  78. <artifactId>leshan-client-cf</artifactId>
  79. <version>${leshan.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.eclipse.leshan</groupId>
  83. <artifactId>leshan-core</artifactId>
  84. <version>${leshan.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.java-websocket</groupId>
  88. <artifactId>Java-WebSocket</artifactId>
  89. <scope>compile</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.google.guava</groupId>
  93. <artifactId>guava</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.commons</groupId>
  97. <artifactId>commons-lang3</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.slf4j</groupId>
  101. <artifactId>slf4j-api</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.slf4j</groupId>
  105. <artifactId>log4j-over-slf4j</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>ch.qos.logback</groupId>
  109. <artifactId>logback-core</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>ch.qos.logback</groupId>
  113. <artifactId>logback-classic</artifactId>
  114. </dependency>
  115. </dependencies>
  116. <build>
  117. <finalName>${pkg.name}-${project.version}</finalName>
  118. <resources>
  119. <resource>
  120. <directory>${project.basedir}/src/main/resources</directory>
  121. </resource>
  122. </resources>
  123. <plugins>
  124. <plugin>
  125. <groupId>org.apache.maven.plugins</groupId>
  126. <artifactId>maven-resources-plugin</artifactId>
  127. </plugin>
  128. <plugin>
  129. <groupId>org.apache.maven.plugins</groupId>
  130. <artifactId>maven-dependency-plugin</artifactId>
  131. </plugin>
  132. <plugin>
  133. <groupId>org.apache.maven.plugins</groupId>
  134. <artifactId>maven-jar-plugin</artifactId>
  135. </plugin>
  136. <plugin>
  137. <groupId>org.springframework.boot</groupId>
  138. <artifactId>spring-boot-maven-plugin</artifactId>
  139. </plugin>
  140. <plugin>
  141. <groupId>org.thingsboard</groupId>
  142. <artifactId>gradle-maven-plugin</artifactId>
  143. </plugin>
  144. <plugin>
  145. <groupId>org.apache.maven.plugins</groupId>
  146. <artifactId>maven-assembly-plugin</artifactId>
  147. </plugin>
  148. <plugin>
  149. <groupId>org.apache.maven.plugins</groupId>
  150. <artifactId>maven-install-plugin</artifactId>
  151. </plugin>
  152. </plugins>
  153. </build>
  154. <repositories>
  155. <repository>
  156. <id>jenkins</id>
  157. <name>Jenkins Repository</name>
  158. <url>https://repo.jenkins-ci.org/releases</url>
  159. <snapshots>
  160. <enabled>false</enabled>
  161. </snapshots>
  162. </repository>
  163. </repositories>
  164. </project>