pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cn.hfln.framework</groupId>
  7. <artifactId>hfln-framework-parent</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.hfln.device</groupId>
  11. <artifactId>hfln-device-service</artifactId>
  12. <version>1.0.0-SNAPSHOT</version>
  13. <packaging>pom</packaging>
  14. <name>device-service</name>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <maven.compiler.source>1.8</maven.compiler.source>
  18. <maven.compiler.target>1.8</maven.compiler.target>
  19. <logback.version>1.2.11</logback.version>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  22. <baomidou.version>3.5.2</baomidou.version>
  23. <spring-boot.version>2.6.14</spring-boot.version>
  24. <spring-cloud.version>2021.0.5</spring-cloud.version>
  25. <spring-cloud-alibaba.version>2021.0.4.0</spring-cloud-alibaba.version>
  26. </properties>
  27. <modules>
  28. <module>device-service-client-starter</module>
  29. <module>device-service-application</module>
  30. <module>device-service-domain</module>
  31. <module>device-service-infrastructure</module>
  32. <module>device-service-server</module>
  33. <module>device-service-common</module>
  34. <!-- <module>mqtt-spring-boot-starter</module>-->
  35. </modules>
  36. <dependencies>
  37. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  38. <dependency>
  39. <groupId>org.projectlombok</groupId>
  40. <artifactId>lombok</artifactId>
  41. <version>1.18.38</version>
  42. <scope>provided</scope>
  43. </dependency>
  44. </dependencies>
  45. <dependencyManagement>
  46. <dependencies>
  47. <!--Project modules-->
  48. <dependency>
  49. <groupId>com.hfln.device</groupId>
  50. <artifactId>device-service-client-starter</artifactId>
  51. <version>${project.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.hfln.device</groupId>
  55. <artifactId>device-service-application</artifactId>
  56. <version>${project.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>cn.hfln.framework</groupId>
  60. <artifactId>hfln-framework-common</artifactId>
  61. <version>${project.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>cn.hfln.framework</groupId>
  65. <artifactId>redis-spring-boot-starter</artifactId>
  66. <version>${project.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>cn.hfln.framework</groupId>
  70. <artifactId>knife4j-doc-spring-boot-starter</artifactId>
  71. <version>${project.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.hfln.device</groupId>
  75. <artifactId>device-service-domain</artifactId>
  76. <version>${project.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.hfln.device</groupId>
  80. <artifactId>device-service-infrastructure</artifactId>
  81. <version>${project.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.hfln.device</groupId>
  85. <artifactId>device-service-common</artifactId>
  86. <version>${project.version}</version>
  87. </dependency>
  88. <!--Project modules End-->
  89. <!--Spring Boot-->
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-dependencies</artifactId>
  93. <version>${spring-boot.version}</version>
  94. <type>pom</type>
  95. <scope>import</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.baomidou</groupId>
  99. <artifactId>mybatis-plus-boot-starter</artifactId>
  100. <version>${baomidou.version}</version>
  101. </dependency>
  102. <!--Spring Boot End-->
  103. <!--Validation API-->
  104. <dependency>
  105. <groupId>javax.validation</groupId>
  106. <artifactId>validation-api</artifactId>
  107. <version>2.0.0.Final</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.hibernate.validator</groupId>
  111. <artifactId>hibernate-validator</artifactId>
  112. <version>6.0.22.Final</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>javax.el</groupId>
  116. <artifactId>javax.el-api</artifactId>
  117. <version>3.0.0</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.glassfish.web</groupId>
  121. <artifactId>javax.el</artifactId>
  122. <version>2.2.6</version>
  123. </dependency>
  124. <!--Validation API End -->
  125. <!-- Misc -->
  126. <dependency>
  127. <groupId>org.apache.commons</groupId>
  128. <artifactId>commons-lang3</artifactId>
  129. <version>3.4</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>junit</groupId>
  133. <artifactId>junit</artifactId>
  134. <version>4.13.1</version>
  135. <scope>test</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.mapstruct</groupId>
  139. <artifactId>mapstruct</artifactId>
  140. <version>1.5.3.Final</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.mapstruct</groupId>
  144. <artifactId>mapstruct-processor</artifactId>
  145. <version>1.5.3.Final</version>
  146. </dependency>
  147. <!-- Misc End -->
  148. <dependency>
  149. <groupId>com.alibaba</groupId>
  150. <artifactId>druid-spring-boot-starter</artifactId>
  151. <version>1.2.8</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>mysql</groupId>
  155. <artifactId>mysql-connector-java</artifactId>
  156. <version>8.0.31</version>
  157. </dependency>
  158. <!-- Logging -->
  159. <dependency>
  160. <groupId>ch.qos.logback</groupId>
  161. <artifactId>logback-classic</artifactId>
  162. <version>${logback.version}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>ch.qos.logback</groupId>
  166. <artifactId>logback-core</artifactId>
  167. <version>${logback.version}</version>
  168. </dependency>
  169. </dependencies>
  170. </dependencyManagement>
  171. </project>