中台用户信息
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

209 行
6.6 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. </exclusion>
  53. <exclusion>
  54. <groupId>org.springframework</groupId>
  55. <artifactId>spring-beans</artifactId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.hp</groupId>
  61. <artifactId>user-client</artifactId>
  62. <version>0.0.2-SNAPSHOT</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.hp</groupId>
  66. <artifactId>service-dependencies</artifactId>
  67. <version>0.0.1-SNAPSHOT</version>
  68. <exclusions>
  69. <exclusion>
  70. <artifactId>slf4j-api</artifactId>
  71. <groupId>org.slf4j</groupId>
  72. </exclusion>
  73. <exclusion>
  74. <artifactId>spring-boot-autoconfigure</artifactId>
  75. <groupId>org.springframework.boot</groupId>
  76. </exclusion>
  77. <exclusion>
  78. <artifactId>spring-boot</artifactId>
  79. <groupId>org.springframework.boot</groupId>
  80. </exclusion>
  81. <exclusion>
  82. <artifactId>swagger-models</artifactId>
  83. <groupId>io.swagger</groupId>
  84. </exclusion>
  85. <exclusion>
  86. <artifactId>zookeeper</artifactId>
  87. <groupId>org.apache.zookeeper</groupId>
  88. </exclusion>
  89. </exclusions>
  90. </dependency>
  91. <dependency>
  92. <groupId>junit</groupId>
  93. <artifactId>junit</artifactId>
  94. <version>4.12</version>
  95. <scope>test</scope>
  96. </dependency>
  97. <!-- mybatis plus 代码生成器 -->
  98. <dependency>
  99. <groupId>com.baomidou</groupId>
  100. <artifactId>mybatis-plus-boot-starter</artifactId>
  101. <version>3.3.0</version>
  102. <exclusions>
  103. <exclusion>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-starter</artifactId>
  106. </exclusion>
  107. <exclusion>
  108. <groupId>org.springframework</groupId>
  109. <artifactId>spring-beans</artifactId>
  110. </exclusion>
  111. </exclusions>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.baomidou</groupId>
  115. <artifactId>mybatis-plus-generator</artifactId>
  116. <version>3.3.0</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.freemarker</groupId>
  120. <artifactId>freemarker</artifactId>
  121. <version>2.3.28</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.mybatis</groupId>
  125. <artifactId>mybatis-typehandlers-jsr310</artifactId>
  126. <version>1.0.1</version>
  127. </dependency>
  128. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
  129. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test -->
  130. <dependency>
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-starter-test</artifactId>
  133. <version>2.3.1.RELEASE</version>
  134. <scope>test</scope>
  135. </dependency>
  136. <!--swagger-->
  137. <dependency>
  138. <groupId>io.springfox</groupId>
  139. <artifactId>springfox-swagger2</artifactId>
  140. <version>2.7.0</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>io.springfox</groupId>
  144. <artifactId>springfox-swagger-ui</artifactId>
  145. <version>2.7.0</version>
  146. </dependency>
  147. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  148. <dependency>
  149. <groupId>com.fasterxml.jackson.core</groupId>
  150. <artifactId>jackson-databind</artifactId>
  151. <version>2.9.5</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>redis.clients</groupId>
  155. <artifactId>jedis</artifactId>
  156. <version>2.9.0</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>com.aliyun</groupId>
  160. <artifactId>aliyun-java-sdk-core</artifactId>
  161. <version>4.5.3</version>
  162. </dependency>
  163. </dependencies>
  164. <!-- <properties>
  165. <failOnMissingWebXml>false</failOnMissingWebXml>
  166. </properties> -->
  167. <build>
  168. <plugins>
  169. <plugin>
  170. <groupId>org.apache.maven.plugins</groupId>
  171. <artifactId>maven-shade-plugin</artifactId>
  172. <version>2.4.1</version>
  173. <executions>
  174. <execution>
  175. <phase>package</phase>
  176. <goals>
  177. <goal>shade</goal>
  178. </goals>
  179. <configuration>
  180. <transformers>
  181. <!-- <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  182. <mainClass>com.xxg.Main</mainClass>
  183. </transformer> -->
  184. <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
  185. <resource>META-INF/spring.handlers</resource>
  186. </transformer>
  187. <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
  188. <resource>META-INF/spring.schemas</resource>
  189. </transformer>
  190. </transformers>
  191. </configuration>
  192. </execution>
  193. </executions>
  194. </plugin>
  195. </plugins>
  196. </build>
  197. </project>