pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. <!-- Paho MQTT Client -->
  60. <dependency>
  61. <groupId>org.eclipse.paho</groupId>
  62. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  63. <version>1.2.5</version>
  64. </dependency>
  65. <!-- Sa-Token 权限认证, 在线文档:http://sa-token.dev33.cn/ -->
  66. <dependency>
  67. <groupId>cn.dev33</groupId>
  68. <artifactId>sa-token-spring-boot-starter</artifactId>
  69. <version>1.34.0</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.junit.jupiter</groupId>
  73. <artifactId>junit-jupiter</artifactId>
  74. <version>5.9.3</version>
  75. <scope>test</scope>
  76. </dependency>
  77. </dependencies>
  78. <build>
  79. <pluginManagement>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-compiler-plugin</artifactId>
  84. <version>3.10.0</version>
  85. <configuration>
  86. <source>1.8</source>
  87. <target>1.8</target>
  88. <annotationProcessorPaths>
  89. <path>
  90. <groupId>org.mapstruct</groupId>
  91. <artifactId>mapstruct-processor</artifactId>
  92. <version>1.5.3.Final</version>
  93. </path>
  94. <path>
  95. <groupId>org.projectlombok</groupId>
  96. <artifactId>lombok</artifactId>
  97. <version>1.18.38</version>
  98. </path>
  99. <path>
  100. <groupId>org.projectlombok</groupId>
  101. <artifactId>lombok-mapstruct-binding</artifactId>
  102. <version>0.2.0</version>
  103. </path>
  104. </annotationProcessorPaths>
  105. </configuration>
  106. </plugin>
  107. </plugins>
  108. </pluginManagement>
  109. </build>
  110. </project>