pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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-component-oss</artifactId>
  54. <version>${revision}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>cc.iotkit</groupId>
  58. <artifactId>iot-component-server</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>cc.iotkit</groupId>
  62. <artifactId>iot-component-converter</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>cc.iotkit</groupId>
  66. <artifactId>iot-virtual-device</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>cc.iotkit</groupId>
  70. <artifactId>iot-message-core</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>cc.iotkit</groupId>
  74. <artifactId>iot-temporal-service</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>cc.iotkit</groupId>
  78. <artifactId>iot-data-serviceImpl-rdb</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>cc.iotkit</groupId>
  82. <artifactId>iot-data-serviceImpl-cache</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>cc.iotkit</groupId>
  86. <artifactId>iot-common-web</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>cc.iotkit</groupId>
  90. <artifactId>iot-common-doc</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>cc.iotkit</groupId>
  94. <artifactId>iot-common-satoken</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>cc.iotkit</groupId>
  98. <artifactId>iot-common-excel</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>cc.iotkit</groupId>
  102. <artifactId>iot-common-log</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>io.github.linpeilie</groupId>
  106. <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
  107. </dependency>
  108. </dependencies>
  109. <build>
  110. <plugins>
  111. <plugin>
  112. <groupId>org.apache.maven.plugins</groupId>
  113. <artifactId>maven-compiler-plugin</artifactId>
  114. <version>3.8.1</version>
  115. <configuration>
  116. <source>${java.version}</source> <!-- depending on your project -->
  117. <target>${java.version}</target> <!-- depending on your project -->
  118. <encoding>utf8</encoding>
  119. <annotationProcessorPaths>
  120. <path>
  121. <groupId>org.projectlombok</groupId>
  122. <artifactId>lombok</artifactId>
  123. <version>${lombok.version}</version>
  124. </path>
  125. <path>
  126. <groupId>io.github.linpeilie</groupId>
  127. <artifactId>mapstruct-plus-processor</artifactId>
  128. <version>${mapstruct-plus.version}</version>
  129. </path>
  130. <path>
  131. <groupId>org.projectlombok</groupId>
  132. <artifactId>lombok-mapstruct-binding</artifactId>
  133. <version>0.2.0</version>
  134. </path>
  135. <!-- other annotation processors -->
  136. </annotationProcessorPaths>
  137. </configuration>
  138. </plugin>
  139. </plugins>
  140. </build>
  141. </project>