pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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>0.4.2-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-standalone</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>cc.iotkit</groupId>
  76. <artifactId>iot-model</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>cc.iotkit</groupId>
  80. <artifactId>iot-common</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>cc.iotkit</groupId>
  84. <artifactId>iot-rule-engine</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>cc.iotkit</groupId>
  88. <artifactId>iot-component-server</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>cc.iotkit</groupId>
  92. <artifactId>iot-component-converter</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>cc.iotkit</groupId>
  96. <artifactId>iot-auth-server</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>cc.iotkit</groupId>
  100. <artifactId>iot-virtual-device</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>cc.iotkit</groupId>
  104. <artifactId>iot-message-core</artifactId>
  105. </dependency>
  106. <!--内置vertx消息总线-->
  107. <dependency>
  108. <groupId>cc.iotkit</groupId>
  109. <artifactId>iot-vertx-event-bus</artifactId>
  110. </dependency>
  111. <!--打开注释使用rocketmq消息总线-->
  112. <!-- <dependency>-->
  113. <!-- <groupId>cc.iotkit</groupId>-->
  114. <!-- <artifactId>iot-message-rocketmq</artifactId>-->
  115. <!-- </dependency>-->
  116. <dependency>
  117. <groupId>cc.iotkit</groupId>
  118. <artifactId>iot-temporal-service</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>cc.iotkit</groupId>
  122. <artifactId>iot-rdb-data-service</artifactId>
  123. </dependency>
  124. <!--打开注释 启用es数据库-->
  125. <dependency>
  126. <groupId>cc.iotkit</groupId>
  127. <artifactId>iot-es-temporal-service</artifactId>
  128. </dependency>
  129. <!--打开注释 启用tdengine数据库-->
  130. <!-- <dependency>-->
  131. <!-- <groupId>cc.iotkit</groupId>-->
  132. <!-- <artifactId>iot-td-temporal-service</artifactId>-->
  133. <!-- </dependency>-->
  134. <dependency>
  135. <groupId>cc.iotkit</groupId>
  136. <artifactId>iot-data-cache</artifactId>
  137. </dependency>
  138. </dependencies>
  139. <build>
  140. <plugins>
  141. <plugin>
  142. <groupId>org.apache.maven.plugins</groupId>
  143. <artifactId>maven-compiler-plugin</artifactId>
  144. <version>3.0</version>
  145. <configuration>
  146. <source>11</source>
  147. <target>11</target>
  148. <encoding>UTF-8</encoding>
  149. </configuration>
  150. </plugin>
  151. <plugin>
  152. <groupId>org.apache.maven.plugins</groupId>
  153. <artifactId>maven-assembly-plugin</artifactId>
  154. <dependencies>
  155. <dependency>
  156. <groupId>cc.iotkit</groupId>
  157. <artifactId>iot-package</artifactId>
  158. <version>${project.version}</version>
  159. </dependency>
  160. </dependencies>
  161. <configuration>
  162. <appendAssemblyId>false</appendAssemblyId>
  163. <descriptorRefs>
  164. <descriptorRef>standalone-package</descriptorRef>
  165. </descriptorRefs>
  166. </configuration>
  167. <executions>
  168. <execution>
  169. <id>make-assembly</id>
  170. <phase>package</phase>
  171. <goals>
  172. <goal>single</goal>
  173. </goals>
  174. </execution>
  175. </executions>
  176. </plugin>
  177. </plugins>
  178. </build>
  179. </project>