pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  21. <spring-boot.version>2.3.12.RELEASE</spring-boot.version>
  22. <baomidou.version>3.5.2</baomidou.version>
  23. <spring-cloud.version>Hoxton.SR12</spring-cloud.version> <!-- Update Spring Cloud version -->
  24. </properties>
  25. <modules>
  26. <module>device-service-client-starter</module>
  27. <module>device-service-application</module>
  28. <module>device-service-domain</module>
  29. <module>device-service-infrastructure</module>
  30. <module>device-service-server</module>
  31. <module>device-service-common</module>
  32. <!-- <module>mqtt-spring-boot-starter</module>-->
  33. </modules>
  34. <dependencies>
  35. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  36. <dependency>
  37. <groupId>org.projectlombok</groupId>
  38. <artifactId>lombok</artifactId>
  39. <version>1.18.38</version>
  40. <scope>provided</scope>
  41. </dependency>
  42. </dependencies>
  43. <dependencyManagement>
  44. <dependencies>
  45. <!--Project modules-->
  46. <dependency>
  47. <groupId>com.hfln.device</groupId>
  48. <artifactId>device-service-client-starter</artifactId>
  49. <version>${project.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.hfln.device</groupId>
  53. <artifactId>device-service-application</artifactId>
  54. <version>${project.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>cn.hfln.framework</groupId>
  58. <artifactId>hfln-framework-common</artifactId>
  59. <version>${project.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>cn.hfln.framework</groupId>
  63. <artifactId>knife4j-doc-spring-boot-starter</artifactId>
  64. <version>${project.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.hfln.device</groupId>
  68. <artifactId>device-service-domain</artifactId>
  69. <version>${project.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.hfln.device</groupId>
  73. <artifactId>device-service-infrastructure</artifactId>
  74. <version>${project.version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.hfln.device</groupId>
  78. <artifactId>device-service-common</artifactId>
  79. <version>${project.version}</version>
  80. </dependency>
  81. <!--Project modules End-->
  82. <!--Spring Boot-->
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-dependencies</artifactId>
  86. <version>${spring-boot.version}</version>
  87. <type>pom</type>
  88. <scope>import</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.baomidou</groupId>
  92. <artifactId>mybatis-plus-boot-starter</artifactId>
  93. <version>${baomidou.version}</version>
  94. </dependency>
  95. <!--Spring Boot End-->
  96. <!--Validation API-->
  97. <dependency>
  98. <groupId>javax.validation</groupId>
  99. <artifactId>validation-api</artifactId>
  100. <version>2.0.0.Final</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.hibernate.validator</groupId>
  104. <artifactId>hibernate-validator</artifactId>
  105. <version>6.0.22.Final</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>javax.el</groupId>
  109. <artifactId>javax.el-api</artifactId>
  110. <version>3.0.0</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.glassfish.web</groupId>
  114. <artifactId>javax.el</artifactId>
  115. <version>2.2.6</version>
  116. </dependency>
  117. <!--Validation API End -->
  118. <!-- Misc -->
  119. <dependency>
  120. <groupId>org.apache.commons</groupId>
  121. <artifactId>commons-lang3</artifactId>
  122. <version>3.4</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>junit</groupId>
  126. <artifactId>junit</artifactId>
  127. <version>4.13.1</version>
  128. <scope>test</scope>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.mapstruct</groupId>
  132. <artifactId>mapstruct</artifactId>
  133. <version>1.5.3.Final</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.mapstruct</groupId>
  137. <artifactId>mapstruct-processor</artifactId>
  138. <version>1.5.3.Final</version>
  139. </dependency>
  140. <!-- Misc End -->
  141. <dependency>
  142. <groupId>com.alibaba</groupId>
  143. <artifactId>druid-spring-boot-starter</artifactId>
  144. <version>1.2.8</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>mysql</groupId>
  148. <artifactId>mysql-connector-java</artifactId>
  149. <version>8.0.31</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>cn.hfln.framework</groupId>
  153. <artifactId>mqtt-spring-boot-starter</artifactId>
  154. <version>1.0.0-SNAPSHOT</version>
  155. </dependency>
  156. </dependencies>
  157. </dependencyManagement>
  158. </project>