pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.hfln.device</groupId>
  6. <artifactId>hfln-device-service</artifactId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. <relativePath>../pom.xml</relativePath>
  9. </parent>
  10. <artifactId>device-service-infrastructure</artifactId>
  11. <packaging>jar</packaging>
  12. <name>device-service-infrastructure</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.hfln.device</groupId>
  16. <artifactId>device-service-domain</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.hfln.device</groupId>
  20. <artifactId>device-service-common</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.hfln.device</groupId>
  24. <artifactId>device-service-application</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>mysql</groupId>
  28. <artifactId>mysql-connector-java</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-test</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>cn.hfln.framework</groupId>
  36. <artifactId>hfln-framework-exception</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>cn.hfln.framework</groupId>
  40. <artifactId>knife4j-doc-spring-boot-starter</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.mapstruct</groupId>
  44. <artifactId>mapstruct</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.projectlombok</groupId>
  48. <artifactId>lombok</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.mapstruct</groupId>
  52. <artifactId>mapstruct-processor</artifactId>
  53. </dependency>
  54. <!-- Spring Integration MQTT -->
  55. <dependency>
  56. <groupId>org.springframework.integration</groupId>
  57. <artifactId>spring-integration-mqtt</artifactId>
  58. </dependency>
  59. <!-- Sa-Token 权限认证, 在线文档:http://sa-token.dev33.cn/ -->
  60. <!-- <dependency>-->
  61. <!-- <groupId>cn.dev33</groupId>-->
  62. <!-- <artifactId>sa-token-spring-boot-starter</artifactId>-->
  63. <!-- <version>1.34.0</version>-->
  64. <!-- </dependency>-->
  65. <dependency>
  66. <groupId>org.junit.jupiter</groupId>
  67. <artifactId>junit-jupiter</artifactId>
  68. <version>5.9.3</version>
  69. <scope>test</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.github.phantomthief</groupId>
  73. <artifactId>more-lambdas</artifactId>
  74. <version>0.1.55</version>
  75. </dependency>
  76. </dependencies>
  77. <build>
  78. <pluginManagement>
  79. <plugins>
  80. <plugin>
  81. <groupId>org.apache.maven.plugins</groupId>
  82. <artifactId>maven-compiler-plugin</artifactId>
  83. <version>3.10.0</version>
  84. <configuration>
  85. <source>1.8</source>
  86. <target>1.8</target>
  87. <annotationProcessorPaths>
  88. <path>
  89. <groupId>org.mapstruct</groupId>
  90. <artifactId>mapstruct-processor</artifactId>
  91. <version>1.5.3.Final</version>
  92. </path>
  93. <path>
  94. <groupId>org.projectlombok</groupId>
  95. <artifactId>lombok</artifactId>
  96. <version>1.18.38</version>
  97. </path>
  98. <path>
  99. <groupId>org.projectlombok</groupId>
  100. <artifactId>lombok-mapstruct-binding</artifactId>
  101. <version>0.2.0</version>
  102. </path>
  103. </annotationProcessorPaths>
  104. </configuration>
  105. </plugin>
  106. </plugins>
  107. </pluginManagement>
  108. </build>
  109. </project>