pom.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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>msa</artifactId>
  20. </parent>
  21. <groupId>org.thingsboard.msa</groupId>
  22. <artifactId>tb-node</artifactId>
  23. <packaging>pom</packaging>
  24. <name>ThingsBoard Node Microservice</name>
  25. <url>https://thingsboard.io</url>
  26. <description>ThingsBoard Node Microservice</description>
  27. <properties>
  28. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  29. <main.dir>${basedir}/../..</main.dir>
  30. <pkg.name>thingsboard</pkg.name>
  31. <docker.name>tb-node</docker.name>
  32. <pkg.unixLogFolder>/var/log/${pkg.name}</pkg.unixLogFolder>
  33. <pkg.installFolder>/usr/share/${pkg.name}</pkg.installFolder>
  34. <docker.push-arm-amd-image.phase>pre-integration-test</docker.push-arm-amd-image.phase>
  35. </properties>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.thingsboard</groupId>
  39. <artifactId>application</artifactId>
  40. <version>${project.version}</version>
  41. <classifier>deb</classifier>
  42. <type>deb</type>
  43. <scope>provided</scope>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-dependency-plugin</artifactId>
  51. <executions>
  52. <execution>
  53. <id>copy-tb-deb</id>
  54. <phase>package</phase>
  55. <goals>
  56. <goal>copy</goal>
  57. </goals>
  58. <configuration>
  59. <artifactItems>
  60. <artifactItem>
  61. <groupId>org.thingsboard</groupId>
  62. <artifactId>application</artifactId>
  63. <classifier>deb</classifier>
  64. <type>deb</type>
  65. <destFileName>${pkg.name}.deb</destFileName>
  66. <outputDirectory>${project.build.directory}</outputDirectory>
  67. </artifactItem>
  68. </artifactItems>
  69. </configuration>
  70. </execution>
  71. </executions>
  72. </plugin>
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-resources-plugin</artifactId>
  76. <executions>
  77. <execution>
  78. <id>copy-docker-config</id>
  79. <phase>process-resources</phase>
  80. <goals>
  81. <goal>copy-resources</goal>
  82. </goals>
  83. <configuration>
  84. <outputDirectory>${project.build.directory}</outputDirectory>
  85. <resources>
  86. <resource>
  87. <directory>docker</directory>
  88. <filtering>true</filtering>
  89. </resource>
  90. </resources>
  91. </configuration>
  92. </execution>
  93. </executions>
  94. </plugin>
  95. <plugin>
  96. <groupId>com.spotify</groupId>
  97. <artifactId>dockerfile-maven-plugin</artifactId>
  98. <executions>
  99. <execution>
  100. <id>build-docker-image</id>
  101. <phase>pre-integration-test</phase>
  102. <goals>
  103. <goal>build</goal>
  104. </goals>
  105. <configuration>
  106. <skip>${dockerfile.skip}</skip>
  107. <repository>${docker.repo}/${docker.name}</repository>
  108. <verbose>true</verbose>
  109. <googleContainerRegistryEnabled>false</googleContainerRegistryEnabled>
  110. <contextDirectory>${project.build.directory}</contextDirectory>
  111. </configuration>
  112. </execution>
  113. <execution>
  114. <id>tag-docker-image</id>
  115. <phase>pre-integration-test</phase>
  116. <goals>
  117. <goal>tag</goal>
  118. </goals>
  119. <configuration>
  120. <skip>${dockerfile.skip}</skip>
  121. <repository>${docker.repo}/${docker.name}</repository>
  122. <tag>${project.version}</tag>
  123. </configuration>
  124. </execution>
  125. </executions>
  126. </plugin>
  127. </plugins>
  128. </build>
  129. <profiles>
  130. <profile>
  131. <id>push-docker-image</id>
  132. <activation>
  133. <property>
  134. <name>push-docker-image</name>
  135. </property>
  136. </activation>
  137. <build>
  138. <plugins>
  139. <plugin>
  140. <groupId>com.spotify</groupId>
  141. <artifactId>dockerfile-maven-plugin</artifactId>
  142. <executions>
  143. <execution>
  144. <id>push-latest-docker-image</id>
  145. <phase>pre-integration-test</phase>
  146. <goals>
  147. <goal>push</goal>
  148. </goals>
  149. <configuration>
  150. <tag>latest</tag>
  151. <repository>${docker.repo}/${docker.name}</repository>
  152. </configuration>
  153. </execution>
  154. <execution>
  155. <id>push-version-docker-image</id>
  156. <phase>pre-integration-test</phase>
  157. <goals>
  158. <goal>push</goal>
  159. </goals>
  160. <configuration>
  161. <tag>${project.version}</tag>
  162. <repository>${docker.repo}/${docker.name}</repository>
  163. </configuration>
  164. </execution>
  165. </executions>
  166. </plugin>
  167. </plugins>
  168. </build>
  169. </profile>
  170. </profiles>
  171. <repositories>
  172. <repository>
  173. <id>jenkins</id>
  174. <name>Jenkins Repository</name>
  175. <url>https://repo.jenkins-ci.org/releases</url>
  176. <snapshots>
  177. <enabled>false</enabled>
  178. </snapshots>
  179. </repository>
  180. </repositories>
  181. </project>