pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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>org.projectlombok</groupId>
  33. <artifactId>lombok</artifactId>
  34. </dependency>
  35. <!-- 测试依赖 -->
  36. <dependency>
  37. <groupId>org.junit.jupiter</groupId>
  38. <artifactId>junit-jupiter-api</artifactId>
  39. <version>5.8.2</version>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.junit.jupiter</groupId>
  44. <artifactId>junit-jupiter-engine</artifactId>
  45. <version>5.8.2</version>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.junit.platform</groupId>
  50. <artifactId>junit-platform-launcher</artifactId>
  51. <version>1.8.2</version>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.junit.platform</groupId>
  56. <artifactId>junit-platform-console</artifactId>
  57. <version>1.8.2</version>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.junit.platform</groupId>
  62. <artifactId>junit-platform-commons</artifactId>
  63. <version>1.8.2</version>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.mockito</groupId>
  68. <artifactId>mockito-core</artifactId>
  69. <version>4.5.1</version>
  70. <scope>test</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.mockito</groupId>
  74. <artifactId>mockito-junit-jupiter</artifactId>
  75. <version>4.5.1</version>
  76. <scope>test</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>net.bytebuddy</groupId>
  80. <artifactId>byte-buddy</artifactId>
  81. <version>1.12.10</version>
  82. <scope>test</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>net.bytebuddy</groupId>
  86. <artifactId>byte-buddy-agent</artifactId>
  87. <version>1.12.10</version>
  88. <scope>test</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework</groupId>
  92. <artifactId>spring-test</artifactId>
  93. <scope>test</scope>
  94. </dependency>
  95. </dependencies>
  96. <build>
  97. <pluginManagement>
  98. <plugins>
  99. <plugin>
  100. <artifactId>maven-deploy-plugin</artifactId>
  101. <configuration>
  102. <skip>true</skip>
  103. </configuration>
  104. </plugin>
  105. </plugins>
  106. </pluginManagement>
  107. <plugins>
  108. <plugin>
  109. <groupId>org.apache.maven.plugins</groupId>
  110. <artifactId>maven-surefire-plugin</artifactId>
  111. <version>2.22.2</version>
  112. <configuration>
  113. <includes>
  114. <include>**/*Test.java</include>
  115. </includes>
  116. <useSystemClassLoader>false</useSystemClassLoader>
  117. <failIfNoTests>false</failIfNoTests>
  118. <trimStackTrace>false</trimStackTrace>
  119. <printSummary>true</printSummary>
  120. </configuration>
  121. <dependencies>
  122. <dependency>
  123. <groupId>org.junit.jupiter</groupId>
  124. <artifactId>junit-jupiter-engine</artifactId>
  125. <version>5.8.2</version>
  126. </dependency>
  127. </dependencies>
  128. </plugin>
  129. </plugins>
  130. </build>
  131. </project>