pom.xml 6.7 KB

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