pom.xml 5.4 KB

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