pom.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  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>js-executor</artifactId>
  23. <packaging>pom</packaging>
  24. <name>ThingsBoard JavaScript Executor Microservice</name>
  25. <url>https://thingsboard.io</url>
  26. <description>Service executing JavaScript functions in sandboxed environment</description>
  27. <properties>
  28. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  29. <main.dir>${basedir}/../..</main.dir>
  30. <docker.name>tb-js-executor</docker.name>
  31. <pkg.name>tb-js-executor</pkg.name>
  32. <pkg.type>js</pkg.type>
  33. <pkg.disabled>false</pkg.disabled>
  34. <pkg.process-resources.phase>process-resources</pkg.process-resources.phase>
  35. <pkg.package.phase>package</pkg.package.phase>
  36. <pkg.linux.dist>${project.build.directory}/package/linux</pkg.linux.dist>
  37. <pkg.win.dist>${project.build.directory}/package/windows</pkg.win.dist>
  38. <docker.push-arm-amd-image.phase>pre-integration-test</docker.push-arm-amd-image.phase>
  39. </properties>
  40. <dependencies>
  41. <dependency>
  42. <groupId>com.sun.winsw</groupId>
  43. <artifactId>winsw</artifactId>
  44. <classifier>bin</classifier>
  45. <type>exe</type>
  46. <scope>provided</scope>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <groupId>com.github.eirslett</groupId>
  53. <artifactId>frontend-maven-plugin</artifactId>
  54. <configuration>
  55. <installDirectory>target</installDirectory>
  56. <workingDirectory>${basedir}</workingDirectory>
  57. </configuration>
  58. <executions>
  59. <execution>
  60. <id>install node and yarn</id>
  61. <goals>
  62. <goal>install-node-and-yarn</goal>
  63. </goals>
  64. <configuration>
  65. <nodeVersion>v16.15.1</nodeVersion>
  66. <yarnVersion>v1.22.17</yarnVersion>
  67. </configuration>
  68. </execution>
  69. <execution>
  70. <id>yarn install</id>
  71. <goals>
  72. <goal>yarn</goal>
  73. </goals>
  74. <configuration>
  75. <arguments>install</arguments>
  76. </configuration>
  77. </execution>
  78. <execution>
  79. <id>yarn pkg</id>
  80. <goals>
  81. <goal>yarn</goal>
  82. </goals>
  83. <phase>compile</phase>
  84. <configuration>
  85. <arguments>run pkg</arguments>
  86. </configuration>
  87. </execution>
  88. </executions>
  89. </plugin>
  90. <plugin>
  91. <groupId>org.apache.maven.plugins</groupId>
  92. <artifactId>maven-dependency-plugin</artifactId>
  93. </plugin>
  94. <plugin>
  95. <groupId>org.apache.maven.plugins</groupId>
  96. <artifactId>maven-resources-plugin</artifactId>
  97. <executions>
  98. <execution>
  99. <id>copy-src-root</id>
  100. <phase>process-resources</phase>
  101. <goals>
  102. <goal>copy-resources</goal>
  103. </goals>
  104. <configuration>
  105. <outputDirectory>${project.build.directory}/src</outputDirectory>
  106. <resources>
  107. <resource>
  108. <directory>${basedir}</directory>
  109. <includes>
  110. <include>package.json</include>
  111. <include>yarn.lock</include>
  112. </includes>
  113. <filtering>false</filtering>
  114. </resource>
  115. </resources>
  116. </configuration>
  117. </execution>
  118. </executions>
  119. </plugin>
  120. <plugin>
  121. <groupId>org.thingsboard</groupId>
  122. <artifactId>gradle-maven-plugin</artifactId>
  123. </plugin>
  124. <plugin>
  125. <groupId>org.apache.maven.plugins</groupId>
  126. <artifactId>maven-assembly-plugin</artifactId>
  127. </plugin>
  128. <plugin>
  129. <groupId>com.spotify</groupId>
  130. <artifactId>dockerfile-maven-plugin</artifactId>
  131. <executions>
  132. <execution>
  133. <id>build-docker-image</id>
  134. <phase>pre-integration-test</phase>
  135. <goals>
  136. <goal>build</goal>
  137. </goals>
  138. <configuration>
  139. <skip>${dockerfile.skip}</skip>
  140. <repository>${docker.repo}/${docker.name}</repository>
  141. <verbose>true</verbose>
  142. <googleContainerRegistryEnabled>false</googleContainerRegistryEnabled>
  143. <contextDirectory>${project.build.directory}</contextDirectory>
  144. </configuration>
  145. </execution>
  146. <execution>
  147. <id>tag-docker-image</id>
  148. <phase>pre-integration-test</phase>
  149. <goals>
  150. <goal>tag</goal>
  151. </goals>
  152. <configuration>
  153. <skip>${dockerfile.skip}</skip>
  154. <repository>${docker.repo}/${docker.name}</repository>
  155. <tag>${project.version}</tag>
  156. </configuration>
  157. </execution>
  158. </executions>
  159. </plugin>
  160. </plugins>
  161. </build>
  162. <profiles>
  163. <profile>
  164. <id>yarn-start</id>
  165. <activation>
  166. <property>
  167. <name>yarn-start</name>
  168. </property>
  169. </activation>
  170. <build>
  171. <plugins>
  172. <plugin>
  173. <groupId>com.github.eirslett</groupId>
  174. <artifactId>frontend-maven-plugin</artifactId>
  175. <configuration>
  176. <installDirectory>target</installDirectory>
  177. <workingDirectory>${basedir}</workingDirectory>
  178. </configuration>
  179. <executions>
  180. <execution>
  181. <id>yarn start</id>
  182. <goals>
  183. <goal>yarn</goal>
  184. </goals>
  185. <configuration>
  186. <arguments>start</arguments>
  187. </configuration>
  188. </execution>
  189. </executions>
  190. </plugin>
  191. </plugins>
  192. </build>
  193. </profile>
  194. <profile>
  195. <id>push-docker-image</id>
  196. <activation>
  197. <property>
  198. <name>push-docker-image</name>
  199. </property>
  200. </activation>
  201. <build>
  202. <plugins>
  203. <plugin>
  204. <groupId>com.spotify</groupId>
  205. <artifactId>dockerfile-maven-plugin</artifactId>
  206. <executions>
  207. <execution>
  208. <id>push-latest-docker-image</id>
  209. <phase>pre-integration-test</phase>
  210. <goals>
  211. <goal>push</goal>
  212. </goals>
  213. <configuration>
  214. <tag>latest</tag>
  215. <repository>${docker.repo}/${docker.name}</repository>
  216. </configuration>
  217. </execution>
  218. <execution>
  219. <id>push-version-docker-image</id>
  220. <phase>pre-integration-test</phase>
  221. <goals>
  222. <goal>push</goal>
  223. </goals>
  224. <configuration>
  225. <tag>${project.version}</tag>
  226. <repository>${docker.repo}/${docker.name}</repository>
  227. </configuration>
  228. </execution>
  229. </executions>
  230. </plugin>
  231. </plugins>
  232. </build>
  233. </profile>
  234. </profiles>
  235. <repositories>
  236. <repository>
  237. <id>jenkins</id>
  238. <name>Jenkins Repository</name>
  239. <url>https://repo.jenkins-ci.org/releases</url>
  240. <snapshots>
  241. <enabled>false</enabled>
  242. </snapshots>
  243. </repository>
  244. </repositories>
  245. </project>