pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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-domain</artifactId>
  11. <packaging>jar</packaging>
  12. <name>device-service-domain</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.hfln.device</groupId>
  16. <artifactId>device-service-client-starter</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>cn.hfln.framework</groupId>
  20. <artifactId>hfln-framework-common</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.alibaba.fastjson2</groupId>
  24. <artifactId>fastjson2</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.tencentcloudapi</groupId>
  28. <artifactId>tencentcloud-sdk-java</artifactId>
  29. <version>3.1.1190</version>
  30. </dependency>
  31. <!-- <dependency>-->
  32. <!-- <groupId>cn.hfln.framework</groupId>-->
  33. <!-- <artifactId>mqtt-spring-boot-starter</artifactId>-->
  34. <!-- </dependency>-->
  35. <dependency>
  36. <groupId>cn.hfln.framework</groupId>
  37. <artifactId>mqtt-spring-boot-starter</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. </dependency>
  43. <!-- 测试依赖 -->
  44. <dependency>
  45. <groupId>org.junit.jupiter</groupId>
  46. <artifactId>junit-jupiter-api</artifactId>
  47. <version>5.8.2</version>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.junit.jupiter</groupId>
  52. <artifactId>junit-jupiter-engine</artifactId>
  53. <version>5.8.2</version>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.junit.platform</groupId>
  58. <artifactId>junit-platform-launcher</artifactId>
  59. <version>1.8.2</version>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.junit.platform</groupId>
  64. <artifactId>junit-platform-console</artifactId>
  65. <version>1.8.2</version>
  66. <scope>test</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.junit.platform</groupId>
  70. <artifactId>junit-platform-commons</artifactId>
  71. <version>1.8.2</version>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.mockito</groupId>
  76. <artifactId>mockito-core</artifactId>
  77. <version>4.5.1</version>
  78. <scope>test</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.mockito</groupId>
  82. <artifactId>mockito-junit-jupiter</artifactId>
  83. <version>4.5.1</version>
  84. <scope>test</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>net.bytebuddy</groupId>
  88. <artifactId>byte-buddy</artifactId>
  89. <version>1.12.10</version>
  90. <scope>test</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>net.bytebuddy</groupId>
  94. <artifactId>byte-buddy-agent</artifactId>
  95. <version>1.12.10</version>
  96. <scope>test</scope>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.springframework</groupId>
  100. <artifactId>spring-test</artifactId>
  101. <scope>test</scope>
  102. </dependency>
  103. </dependencies>
  104. <build>
  105. <pluginManagement>
  106. <plugins>
  107. <plugin>
  108. <artifactId>maven-deploy-plugin</artifactId>
  109. <configuration>
  110. <skip>true</skip>
  111. </configuration>
  112. </plugin>
  113. </plugins>
  114. </pluginManagement>
  115. <plugins>
  116. <plugin>
  117. <groupId>org.apache.maven.plugins</groupId>
  118. <artifactId>maven-surefire-plugin</artifactId>
  119. <version>2.22.2</version>
  120. <configuration>
  121. <includes>
  122. <include>**/*Test.java</include>
  123. </includes>
  124. <useSystemClassLoader>false</useSystemClassLoader>
  125. <failIfNoTests>false</failIfNoTests>
  126. <trimStackTrace>false</trimStackTrace>
  127. <printSummary>true</printSummary>
  128. </configuration>
  129. <dependencies>
  130. <dependency>
  131. <groupId>org.junit.jupiter</groupId>
  132. <artifactId>junit-jupiter-engine</artifactId>
  133. <version>5.8.2</version>
  134. </dependency>
  135. </dependencies>
  136. </plugin>
  137. </plugins>
  138. </build>
  139. </project>