pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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>cc.iotkit</groupId>
  18. <artifactId>iot-common-model</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>cc.iotkit</groupId>
  22. <artifactId>iot-common-core</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>cc.iotkit</groupId>
  26. <artifactId>iot-data-serviceImpl-rdb</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>cc.iotkit</groupId>
  30. <artifactId>iot-data-serviceImpl-cache</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>cc.iotkit</groupId>
  34. <artifactId>iot-common-web</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>cc.iotkit</groupId>
  38. <artifactId>iot-common-doc</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>cc.iotkit</groupId>
  42. <artifactId>iot-common-satoken</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>cc.iotkit</groupId>
  46. <artifactId>iot-common-log</artifactId>
  47. </dependency>
  48. <!--====================第三方库===================-->
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-web</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.cloud</groupId>
  55. <artifactId>spring-cloud-starter-openfeign</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-webflux</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>joda-time</groupId>
  63. <artifactId>joda-time</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>io.github.linpeilie</groupId>
  67. <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-compiler-plugin</artifactId>
  75. <version>3.8.1</version>
  76. <configuration>
  77. <source>${java.version}</source> <!-- depending on your project -->
  78. <target>${java.version}</target> <!-- depending on your project -->
  79. <encoding>utf8</encoding>
  80. <annotationProcessorPaths>
  81. <path>
  82. <groupId>org.projectlombok</groupId>
  83. <artifactId>lombok</artifactId>
  84. <version>${lombok.version}</version>
  85. </path>
  86. <path>
  87. <groupId>io.github.linpeilie</groupId>
  88. <artifactId>mapstruct-plus-processor</artifactId>
  89. <version>${mapstruct-plus.version}</version>
  90. </path>
  91. <path>
  92. <groupId>org.projectlombok</groupId>
  93. <artifactId>lombok-mapstruct-binding</artifactId>
  94. <version>0.2.0</version>
  95. </path>
  96. <!-- other annotation processors -->
  97. </annotationProcessorPaths>
  98. </configuration>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. </project>