pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>iotkit-parent</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-starter</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.cloud</groupId>
  19. <artifactId>spring-cloud-starter-openfeign</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-logging</artifactId>
  24. <exclusions>
  25. <exclusion>
  26. <groupId>org.apache.logging.log4j</groupId>
  27. <artifactId>log4j-to-slf4j</artifactId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.logging.log4j</groupId>
  33. <artifactId>log4j-core</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.projectlombok</groupId>
  37. <artifactId>lombok</artifactId>
  38. <optional>true</optional>
  39. </dependency>
  40. <dependency>
  41. <groupId>commons-beanutils</groupId>
  42. <artifactId>commons-beanutils</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.commons</groupId>
  46. <artifactId>commons-lang3</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-codec</groupId>
  50. <artifactId>commons-codec</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>commons-io</groupId>
  54. <artifactId>commons-io</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.bouncycastle</groupId>
  58. <artifactId>bcprov-jdk15on</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.aliyun.oss</groupId>
  62. <artifactId>aliyun-sdk-oss</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>joda-time</groupId>
  66. <artifactId>joda-time</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>it.ozimov</groupId>
  70. <artifactId>embedded-redis</artifactId>
  71. <exclusions>
  72. <exclusion>
  73. <artifactId>slf4j-simple</artifactId>
  74. <groupId>org.slf4j</groupId>
  75. </exclusion>
  76. </exclusions>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.elasticsearch</groupId>
  80. <artifactId>elasticsearch</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.elasticsearch.plugin</groupId>
  84. <artifactId>transport-netty4-client</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>cc.iotkit</groupId>
  88. <artifactId>iot-common-model</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>cc.iotkit</groupId>
  92. <artifactId>iot-common-core</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>cc.iotkit</groupId>
  96. <artifactId>iot-rule-engine</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>cc.iotkit</groupId>
  100. <artifactId>iot-component-server</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>cc.iotkit</groupId>
  104. <artifactId>iot-component-converter</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>cc.iotkit</groupId>
  108. <artifactId>iot-virtual-device</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>cc.iotkit</groupId>
  112. <artifactId>iot-message-core</artifactId>
  113. </dependency>
  114. <!--内置vertx消息总线-->
  115. <dependency>
  116. <groupId>cc.iotkit</groupId>
  117. <artifactId>iot-message-event-bus</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>cc.iotkit</groupId>
  121. <artifactId>iot-common-doc</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>cc.iotkit</groupId>
  125. <artifactId>iot-manager</artifactId>
  126. </dependency>
  127. <dependency>
  128. <groupId>cc.iotkit</groupId>
  129. <artifactId>iot-system</artifactId>
  130. </dependency>
  131. <!-- <dependency>
  132. <groupId>cc.iotkit</groupId>
  133. <artifactId>iot-baetyl</artifactId>
  134. </dependency>-->
  135. <!--打开注释使用rocketmq消息总线-->
  136. <!-- <dependency>-->
  137. <!-- <groupId>cc.iotkit</groupId>-->
  138. <!-- <artifactId>iot-message-rocketmq</artifactId>-->
  139. <!-- </dependency>-->
  140. <dependency>
  141. <groupId>cc.iotkit</groupId>
  142. <artifactId>iot-temporal-service</artifactId>
  143. </dependency>
  144. <dependency>
  145. <groupId>cc.iotkit</groupId>
  146. <artifactId>iot-data-serviceImpl-rdb</artifactId>
  147. </dependency>
  148. <!--打开注释 启用es数据库-->
  149. <dependency>
  150. <groupId>cc.iotkit</groupId>
  151. <artifactId>iot-temporal-serviceImpl-es</artifactId>
  152. </dependency>
  153. <!--打开注释 启用timescale数据库-->
  154. <!-- <dependency>-->
  155. <!-- <groupId>cc.iotkit</groupId>-->
  156. <!-- <artifactId>iot-temporal-serviceImpl-ts</artifactId>-->
  157. <!-- </dependency>-->
  158. <!--打开注释 启用tdengine数据库-->
  159. <!-- <dependency>-->
  160. <!-- <groupId>cc.iotkit</groupId>-->
  161. <!-- <artifactId>iot-temproal-serviceImpl-td</artifactId>-->
  162. <!-- </dependency>-->
  163. <dependency>
  164. <groupId>cc.iotkit</groupId>
  165. <artifactId>iot-data-serviceImpl-cache</artifactId>
  166. </dependency>
  167. </dependencies>
  168. <build>
  169. <plugins>
  170. <plugin>
  171. <groupId>org.apache.maven.plugins</groupId>
  172. <artifactId>maven-compiler-plugin</artifactId>
  173. <version>3.0</version>
  174. <configuration>
  175. <source>${java.version}</source>
  176. <target>${java.version}</target>
  177. <encoding>UTF-8</encoding>
  178. </configuration>
  179. </plugin>
  180. <plugin>
  181. <groupId>org.springframework.boot</groupId>
  182. <artifactId>spring-boot-maven-plugin</artifactId>
  183. </plugin>
  184. <plugin>
  185. <groupId>org.apache.maven.plugins</groupId>
  186. <artifactId>maven-assembly-plugin</artifactId>
  187. <configuration>
  188. <appendAssemblyId>false</appendAssemblyId>
  189. <archive>
  190. <manifest>
  191. <mainClass>cc.iotkit.Application</mainClass>
  192. </manifest>
  193. </archive>
  194. <descriptors>
  195. <descriptor>${project.parent.basedir}/iot-starter/src/main/resources/assemblies/standalone-package.xml</descriptor>
  196. </descriptors>
  197. </configuration>
  198. <executions>
  199. <execution>
  200. <id>make-assembly</id>
  201. <phase>package</phase>
  202. <goals>
  203. <goal>single</goal>
  204. </goals>
  205. </execution>
  206. </executions>
  207. </plugin>
  208. </plugins>
  209. </build>
  210. </project>