pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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>cc.iotkit</groupId>
  15. <artifactId>iot-common-model</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>cc.iotkit</groupId>
  19. <artifactId>iot-common-core</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>cc.iotkit</groupId>
  23. <artifactId>iot-rule-engine</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>cc.iotkit</groupId>
  27. <artifactId>iot-screen</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>cc.iotkit</groupId>
  31. <artifactId>iot-component-converter</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>cc.iotkit</groupId>
  35. <artifactId>iot-virtual-device</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>cc.iotkit</groupId>
  39. <artifactId>iot-message-core</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>cc.iotkit</groupId>
  43. <artifactId>iot-common-oss</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>cc.iotkit</groupId>
  47. <artifactId>iot-temporal-service</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>cc.iotkit</groupId>
  51. <artifactId>iot-data-serviceImpl-rdb</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>cc.iotkit</groupId>
  55. <artifactId>iot-data-serviceImpl-cache</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>cc.iotkit</groupId>
  59. <artifactId>iot-common-web</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>cc.iotkit</groupId>
  63. <artifactId>iot-common-doc</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>cc.iotkit</groupId>
  67. <artifactId>iot-common-satoken</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>cc.iotkit</groupId>
  71. <artifactId>iot-common-excel</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>cc.iotkit</groupId>
  75. <artifactId>iot-common-log</artifactId>
  76. </dependency>
  77. <!--====================第三方库===================-->
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-web</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>joda-time</groupId>
  84. <artifactId>joda-time</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>io.github.linpeilie</groupId>
  88. <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.aliyun.oss</groupId>
  92. <artifactId>aliyun-sdk-oss</artifactId>
  93. </dependency>
  94. </dependencies>
  95. <build>
  96. <plugins>
  97. <plugin>
  98. <groupId>org.apache.maven.plugins</groupId>
  99. <artifactId>maven-compiler-plugin</artifactId>
  100. <version>3.8.1</version>
  101. <configuration>
  102. <source>${java.version}</source> <!-- depending on your project -->
  103. <target>${java.version}</target> <!-- depending on your project -->
  104. <encoding>utf8</encoding>
  105. <annotationProcessorPaths>
  106. <path>
  107. <groupId>org.projectlombok</groupId>
  108. <artifactId>lombok</artifactId>
  109. <version>${lombok.version}</version>
  110. </path>
  111. <path>
  112. <groupId>io.github.linpeilie</groupId>
  113. <artifactId>mapstruct-plus-processor</artifactId>
  114. <version>${mapstruct-plus.version}</version>
  115. </path>
  116. <path>
  117. <groupId>org.projectlombok</groupId>
  118. <artifactId>lombok-mapstruct-binding</artifactId>
  119. <version>0.2.0</version>
  120. </path>
  121. <!-- other annotation processors -->
  122. </annotationProcessorPaths>
  123. </configuration>
  124. </plugin>
  125. </plugins>
  126. </build>
  127. </project>