pom.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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.boot</groupId>
  19. <artifactId>spring-boot-starter-logging</artifactId>
  20. <exclusions>
  21. <exclusion>
  22. <groupId>org.apache.logging.log4j</groupId>
  23. <artifactId>log4j-to-slf4j</artifactId>
  24. </exclusion>
  25. </exclusions>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.logging.log4j</groupId>
  29. <artifactId>log4j-core</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.projectlombok</groupId>
  33. <artifactId>lombok</artifactId>
  34. <optional>true</optional>
  35. </dependency>
  36. <dependency>
  37. <groupId>commons-beanutils</groupId>
  38. <artifactId>commons-beanutils</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.commons</groupId>
  42. <artifactId>commons-lang3</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>commons-codec</groupId>
  46. <artifactId>commons-codec</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-io</groupId>
  50. <artifactId>commons-io</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.bouncycastle</groupId>
  54. <artifactId>bcprov-jdk15on</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.aliyun.oss</groupId>
  58. <artifactId>aliyun-sdk-oss</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>joda-time</groupId>
  62. <artifactId>joda-time</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>it.ozimov</groupId>
  66. <artifactId>embedded-redis</artifactId>
  67. <exclusions>
  68. <exclusion>
  69. <artifactId>slf4j-simple</artifactId>
  70. <groupId>org.slf4j</groupId>
  71. </exclusion>
  72. </exclusions>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.elasticsearch</groupId>
  76. <artifactId>elasticsearch</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.elasticsearch.plugin</groupId>
  80. <artifactId>transport-netty4-client</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>cc.iotkit</groupId>
  84. <artifactId>iot-model</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>cc.iotkit</groupId>
  88. <artifactId>iot-common-core</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>cc.iotkit</groupId>
  92. <artifactId>iot-rule-engine</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>cc.iotkit</groupId>
  96. <artifactId>iot-component-server</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>cc.iotkit</groupId>
  100. <artifactId>iot-component-converter</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>cc.iotkit</groupId>
  104. <artifactId>iot-auth-server</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-vertx-event-bus</artifactId>
  118. </dependency>
  119. <!--打开注释使用rocketmq消息总线-->
  120. <!-- <dependency>-->
  121. <!-- <groupId>cc.iotkit</groupId>-->
  122. <!-- <artifactId>iot-message-rocketmq</artifactId>-->
  123. <!-- </dependency>-->
  124. <dependency>
  125. <groupId>cc.iotkit</groupId>
  126. <artifactId>iot-temporal-service</artifactId>
  127. </dependency>
  128. <dependency>
  129. <groupId>cc.iotkit</groupId>
  130. <artifactId>iot-rdb-data-service</artifactId>
  131. </dependency>
  132. <!--打开注释 启用es数据库-->
  133. <dependency>
  134. <groupId>cc.iotkit</groupId>
  135. <artifactId>iot-es-temporal-service</artifactId>
  136. </dependency>
  137. <!--打开注释 启用timescale数据库-->
  138. <!-- <dependency>-->
  139. <!-- <groupId>cc.iotkit</groupId>-->
  140. <!-- <artifactId>iot-ts-temporal-service</artifactId>-->
  141. <!-- </dependency>-->
  142. <!--打开注释 启用tdengine数据库-->
  143. <!-- <dependency>-->
  144. <!-- <groupId>cc.iotkit</groupId>-->
  145. <!-- <artifactId>iot-td-temporal-service</artifactId>-->
  146. <!-- </dependency>-->
  147. <dependency>
  148. <groupId>cc.iotkit</groupId>
  149. <artifactId>iot-data-cache</artifactId>
  150. </dependency>
  151. <!--springfox swagger官方Starter-->
  152. <dependency>
  153. <groupId>io.springfox</groupId>
  154. <artifactId>springfox-boot-starter</artifactId>
  155. <version>3.0.0</version>
  156. <exclusions>
  157. <exclusion>
  158. <groupId>io.swagger</groupId>
  159. <artifactId>swagger-models</artifactId>
  160. </exclusion>
  161. </exclusions>
  162. </dependency>
  163. <dependency>
  164. <groupId>io.swagger</groupId>
  165. <artifactId>swagger-models</artifactId>
  166. <version>1.6.8</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.github.xiaoymin</groupId>
  170. <artifactId>knife4j-spring-boot-starter</artifactId>
  171. <version>3.0.3</version>
  172. </dependency>
  173. </dependencies>
  174. <build>
  175. <plugins>
  176. <plugin>
  177. <groupId>org.apache.maven.plugins</groupId>
  178. <artifactId>maven-compiler-plugin</artifactId>
  179. <version>3.0</version>
  180. <configuration>
  181. <source>11</source>
  182. <target>11</target>
  183. <encoding>UTF-8</encoding>
  184. </configuration>
  185. </plugin>
  186. <plugin>
  187. <groupId>org.springframework.boot</groupId>
  188. <artifactId>spring-boot-maven-plugin</artifactId>
  189. </plugin>
  190. <plugin>
  191. <groupId>org.apache.maven.plugins</groupId>
  192. <artifactId>maven-assembly-plugin</artifactId>
  193. <configuration>
  194. <appendAssemblyId>false</appendAssemblyId>
  195. <archive>
  196. <manifest>
  197. <mainClass>cc.iotkit.Application</mainClass>
  198. </manifest>
  199. </archive>
  200. <descriptors>
  201. <descriptor>${project.parent.basedir}/iot-starter/src/main/resources/assemblies/standalone-package.xml</descriptor>
  202. </descriptors>
  203. </configuration>
  204. <executions>
  205. <execution>
  206. <id>make-assembly</id>
  207. <phase>package</phase>
  208. <goals>
  209. <goal>single</goal>
  210. </goals>
  211. </execution>
  212. </executions>
  213. </plugin>
  214. </plugins>
  215. </build>
  216. </project>