中台用户信息
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

197 righe
6.2 KiB

  1. <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/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.hp</groupId>
  5. <artifactId>user-parent</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>user-service</artifactId>
  9. <packaging>jar</packaging>
  10. <dependencies>
  11. <!-- 内部依赖-->
  12. <dependency>
  13. <groupId>com.hp</groupId>
  14. <artifactId>nacos-client</artifactId>
  15. <version>0.0.1-SNAPSHOT</version>
  16. <exclusions>
  17. <exclusion>
  18. <groupId>org.mybatis.spring.boot</groupId>
  19. <artifactId>mybatis-spring-boot-starter</artifactId>
  20. </exclusion>
  21. <exclusion>
  22. <artifactId>slf4j-api</artifactId>
  23. <groupId>org.slf4j</groupId>
  24. </exclusion>
  25. <exclusion>
  26. <artifactId>spring-web</artifactId>
  27. <groupId>org.springframework</groupId>
  28. </exclusion>
  29. <exclusion>
  30. <artifactId>spring-context</artifactId>
  31. <groupId>org.springframework</groupId>
  32. </exclusion>
  33. <exclusion>
  34. <artifactId>spring-boot-autoconfigure</artifactId>
  35. <groupId>org.springframework.boot</groupId>
  36. </exclusion>
  37. <exclusion>
  38. <artifactId>spring-beans</artifactId>
  39. <groupId>org.springframework</groupId>
  40. </exclusion>
  41. <exclusion>
  42. <artifactId>commons-lang3</artifactId>
  43. <groupId>org.apache.commons</groupId>
  44. </exclusion>
  45. <exclusion>
  46. <artifactId>spring-expression</artifactId>
  47. <groupId>org.springframework</groupId>
  48. </exclusion>
  49. <exclusion>
  50. <artifactId>spring-boot-starter-json</artifactId>
  51. <groupId>org.springframework.boot</groupId>
  52. <groupId>org.springframework</groupId>
  53. <artifactId>spring-beans</artifactId>
  54. </exclusion>
  55. </exclusions>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.hp</groupId>
  59. <artifactId>user-client</artifactId>
  60. <version>0.0.2-SNAPSHOT</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.hp</groupId>
  64. <artifactId>service-dependencies</artifactId>
  65. <version>0.0.1-SNAPSHOT</version>
  66. <exclusions>
  67. <exclusion>
  68. <artifactId>slf4j-api</artifactId>
  69. <groupId>org.slf4j</groupId>
  70. </exclusion>
  71. <exclusion>
  72. <artifactId>spring-boot-autoconfigure</artifactId>
  73. <groupId>org.springframework.boot</groupId>
  74. </exclusion>
  75. <exclusion>
  76. <artifactId>spring-boot</artifactId>
  77. <groupId>org.springframework.boot</groupId>
  78. </exclusion>
  79. <exclusion>
  80. <artifactId>swagger-models</artifactId>
  81. <groupId>io.swagger</groupId>
  82. </exclusion>
  83. <exclusion>
  84. <artifactId>zookeeper</artifactId>
  85. <groupId>org.apache.zookeeper</groupId>
  86. </exclusion>
  87. </exclusions>
  88. </dependency>
  89. <dependency>
  90. <groupId>junit</groupId>
  91. <artifactId>junit</artifactId>
  92. <version>4.12</version>
  93. <scope>test</scope>
  94. </dependency>
  95. <!-- mybatis plus 代码生成器 -->
  96. <dependency>
  97. <groupId>com.baomidou</groupId>
  98. <artifactId>mybatis-plus-boot-starter</artifactId>
  99. <version>3.3.0</version>
  100. <exclusions>
  101. <exclusion>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-starter</artifactId>
  104. </exclusion>
  105. <exclusion>
  106. <groupId>org.springframework</groupId>
  107. <artifactId>spring-beans</artifactId>
  108. </exclusion>
  109. </exclusions>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.baomidou</groupId>
  113. <artifactId>mybatis-plus-generator</artifactId>
  114. <version>3.3.0</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.freemarker</groupId>
  118. <artifactId>freemarker</artifactId>
  119. <version>2.3.28</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.mybatis</groupId>
  123. <artifactId>mybatis-typehandlers-jsr310</artifactId>
  124. <version>1.0.1</version>
  125. </dependency>
  126. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
  127. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test -->
  128. <dependency>
  129. <groupId>org.springframework.boot</groupId>
  130. <artifactId>spring-boot-starter-test</artifactId>
  131. <version>2.3.1.RELEASE</version>
  132. <scope>test</scope>
  133. </dependency>
  134. <!--swagger-->
  135. <dependency>
  136. <groupId>io.springfox</groupId>
  137. <artifactId>springfox-swagger2</artifactId>
  138. <version>2.7.0</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>io.springfox</groupId>
  142. <artifactId>springfox-swagger-ui</artifactId>
  143. <version>2.7.0</version>
  144. </dependency>
  145. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  146. <dependency>
  147. <groupId>com.fasterxml.jackson.core</groupId>
  148. <artifactId>jackson-databind</artifactId>
  149. <version>2.9.5</version>
  150. </dependency>
  151. </dependencies>
  152. <!-- <properties>
  153. <failOnMissingWebXml>false</failOnMissingWebXml>
  154. </properties> -->
  155. <build>
  156. <plugins>
  157. <plugin>
  158. <groupId>org.apache.maven.plugins</groupId>
  159. <artifactId>maven-shade-plugin</artifactId>
  160. <version>2.4.1</version>
  161. <executions>
  162. <execution>
  163. <phase>package</phase>
  164. <goals>
  165. <goal>shade</goal>
  166. </goals>
  167. <configuration>
  168. <transformers>
  169. <!-- <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  170. <mainClass>com.xxg.Main</mainClass>
  171. </transformer> -->
  172. <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
  173. <resource>META-INF/spring.handlers</resource>
  174. </transformer>
  175. <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
  176. <resource>META-INF/spring.schemas</resource>
  177. </transformer>
  178. </transformers>
  179. </configuration>
  180. </execution>
  181. </executions>
  182. </plugin>
  183. </plugins>
  184. </build>
  185. </project>