pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>iot-module</artifactId>
  8. <groupId>cc.iotkit</groupId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>iot-baetyl</artifactId>
  12. <description>
  13. 此模块为边缘计算模块云端控制SDK
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.cloud</groupId>
  22. <artifactId>spring-cloud-starter-openfeign</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-webflux</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.bouncycastle</groupId>
  30. <artifactId>bcprov-jdk15on</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.aliyun.oss</groupId>
  34. <artifactId>aliyun-sdk-oss</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>joda-time</groupId>
  38. <artifactId>joda-time</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>it.ozimov</groupId>
  42. <artifactId>embedded-redis</artifactId>
  43. <exclusions>
  44. <exclusion>
  45. <artifactId>slf4j-simple</artifactId>
  46. <groupId>org.slf4j</groupId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <dependency>
  51. <groupId>cc.iotkit</groupId>
  52. <artifactId>iot-common-model</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>cc.iotkit</groupId>
  56. <artifactId>iot-common-core</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>cc.iotkit</groupId>
  60. <artifactId>iot-rule-engine</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>cc.iotkit</groupId>
  64. <artifactId>iot-component-server</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>cc.iotkit</groupId>
  68. <artifactId>iot-component-converter</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>cc.iotkit</groupId>
  72. <artifactId>iot-virtual-device</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>cc.iotkit</groupId>
  76. <artifactId>iot-message-core</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>cc.iotkit</groupId>
  80. <artifactId>iot-temporal-service</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>cc.iotkit</groupId>
  84. <artifactId>iot-data-serviceImpl-rdb</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>cc.iotkit</groupId>
  88. <artifactId>iot-data-serviceImpl-cache</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>cc.iotkit</groupId>
  92. <artifactId>iot-common-web</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>cc.iotkit</groupId>
  96. <artifactId>iot-common-doc</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>cc.iotkit</groupId>
  100. <artifactId>iot-common-satoken</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>cc.iotkit</groupId>
  104. <artifactId>iot-common-excel</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>cc.iotkit</groupId>
  108. <artifactId>iot-common-log</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>io.github.linpeilie</groupId>
  112. <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
  113. </dependency>
  114. </dependencies>
  115. <build>
  116. <plugins>
  117. <plugin>
  118. <groupId>org.apache.maven.plugins</groupId>
  119. <artifactId>maven-compiler-plugin</artifactId>
  120. <version>3.8.1</version>
  121. <configuration>
  122. <source>${java.version}</source> <!-- depending on your project -->
  123. <target>${java.version}</target> <!-- depending on your project -->
  124. <encoding>utf8</encoding>
  125. <annotationProcessorPaths>
  126. <path>
  127. <groupId>org.projectlombok</groupId>
  128. <artifactId>lombok</artifactId>
  129. <version>${lombok.version}</version>
  130. </path>
  131. <path>
  132. <groupId>io.github.linpeilie</groupId>
  133. <artifactId>mapstruct-plus-processor</artifactId>
  134. <version>${mapstruct-plus.version}</version>
  135. </path>
  136. <path>
  137. <groupId>org.projectlombok</groupId>
  138. <artifactId>lombok-mapstruct-binding</artifactId>
  139. <version>0.2.0</version>
  140. </path>
  141. <!-- other annotation processors -->
  142. </annotationProcessorPaths>
  143. </configuration>
  144. </plugin>
  145. </plugins>
  146. </build>
  147. </project>