中台用户信息
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

260 Zeilen
8.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. </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. <dependency>
  164. <groupId>org.apache.curator</groupId>
  165. <artifactId>curator-framework</artifactId>
  166. <version>2.8.0</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.apache.curator</groupId>
  170. <artifactId>curator-recipes</artifactId>
  171. <version>2.8.0</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.gavaghan</groupId>
  175. <artifactId>geodesy</artifactId>
  176. <version>1.1.3</version>
  177. </dependency>
  178. </dependencies>
  179. <!-- <properties>
  180. <failOnMissingWebXml>false</failOnMissingWebXml>
  181. </properties> -->
  182. <build>
  183. <plugins>
  184. <plugin>
  185. <groupId>org.springframework.boot</groupId>
  186. <artifactId>spring-boot-maven-plugin</artifactId>
  187. <configuration>
  188. <mainClass>com.hp.user.service.UserServiceApplaction</mainClass>
  189. <executable>true</executable>
  190. </configuration>
  191. <executions>
  192. <execution>
  193. <goals>
  194. <goal>repackage</goal>
  195. </goals>
  196. </execution>
  197. </executions>
  198. </plugin>
  199. <!-- <plugin>
  200. <groupId>org.springframework.boot</groupId>
  201. <artifactId>spring-boot-maven-plugin</artifactId>
  202. <version>2.6</version>
  203. <configuration>
  204. <archive>
  205. <manifest>
  206. <addClasspath>true</addClasspath>
  207. <classpathPrefix>lib/</classpathPrefix>
  208. <mainClass>com.hp.user.service.UserServiceApplaction</mainClass>
  209. </manifest>
  210. </archive>
  211. </configuration>
  212. </plugin> -->
  213. <!-- <plugin>
  214. <groupId>org.apache.maven.plugins</groupId>
  215. <artifactId>maven-shade-plugin</artifactId>
  216. <version>2.4.1</version>
  217. <executions>
  218. <execution>
  219. <phase>package</phase>
  220. <goals>
  221. <goal>shade</goal>
  222. </goals>
  223. <configuration>
  224. <transformers>
  225. <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  226. <mainClass>com.xxg.Main</mainClass>
  227. </transformer>
  228. <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
  229. <resource>META-INF/spring.handlers</resource>
  230. </transformer>
  231. <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
  232. <resource>META-INF/spring.schemas</resource>
  233. </transformer>
  234. </transformers>
  235. </configuration>
  236. </execution>
  237. </executions>
  238. </plugin> -->
  239. </plugins>
  240. </build>
  241. </project>