pom.xml 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.fcb.manager</groupId>
  7. <artifactId>fcb-project-manager-parent</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <description>房车宝管理后台综合管理微服务</description>
  10. <packaging>pom</packaging>
  11. <modules>
  12. <module>fcb-project-application</module>
  13. <module>fcb-project-manager-core</module>
  14. </modules>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
  20. <nacos.latest.version>0.2.1</nacos.latest.version>
  21. <nacos-config-spring-boot.version>0.2.1</nacos-config-spring-boot.version>
  22. <jedis-version>3.1.0</jedis-version>
  23. </properties>
  24. <parent>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-parent</artifactId>
  27. <version>2.3.4.RELEASE</version>
  28. <relativePath/> <!-- lookup parent from repository -->
  29. </parent>
  30. <dependencyManagement>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.springframework.cloud</groupId>
  34. <artifactId>spring-cloud-dependencies</artifactId>
  35. <version>Greenwich.SR2</version>
  36. <type>pom</type>
  37. <scope>import</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.cloud</groupId>
  41. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  42. <version>0.9.0.RELEASE</version>
  43. <type>pom</type>
  44. <scope>import</scope>
  45. </dependency>
  46. </dependencies>
  47. </dependencyManagement>
  48. <dependencies>
  49. <!-- 引入四维sdk -->
  50. <dependency>
  51. <groupId>org.4dage</groupId>
  52. <artifactId>4dage-back-sdk</artifactId>
  53. <version>1.0.3.0-RELEASE</version>
  54. <exclusions>
  55. <exclusion>
  56. <groupId>io.lettuce</groupId>
  57. <artifactId>lettuce-core</artifactId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <!-- nacos 注册中心依赖 -->
  62. <dependency>
  63. <groupId>org.springframework.cloud</groupId>
  64. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  65. <exclusions>
  66. <exclusion>
  67. <groupId>com.google.guava</groupId>
  68. <artifactId>guava</artifactId>
  69. </exclusion>
  70. <exclusion>
  71. <groupId>commons-io</groupId>
  72. <artifactId>commons-io</artifactId>
  73. </exclusion>
  74. <exclusion>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-tomcat</artifactId>
  77. </exclusion>
  78. </exclusions>
  79. </dependency>
  80. <!-- nacos 配置中心依赖 -->
  81. <dependency>
  82. <groupId>com.alibaba.boot</groupId>
  83. <artifactId>nacos-config-spring-boot-starter</artifactId>
  84. <version>${nacos-config-spring-boot.version}</version>
  85. <exclusions>
  86. <exclusion>
  87. <groupId>com.google.guava</groupId>
  88. <artifactId>guava</artifactId>
  89. </exclusion>
  90. </exclusions>
  91. </dependency>
  92. <!-- mybatis-plus逻辑删除依赖-->
  93. <dependency>
  94. <groupId>com.baomidou</groupId>
  95. <artifactId>mybatis-plus-core</artifactId>
  96. <version>3.3.1.tmp</version>
  97. </dependency>
  98. <!-- Rpc feign依赖 -->
  99. <dependency>
  100. <groupId>org.springframework.cloud</groupId>
  101. <artifactId>spring-cloud-starter-openfeign</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>redis.clients</groupId>
  105. <artifactId>jedis</artifactId>
  106. <version>${jedis-version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-starter-data-redis</artifactId>
  111. <exclusions>
  112. <exclusion>
  113. <groupId>io.lettuce</groupId>
  114. <artifactId>lettuce-core</artifactId>
  115. </exclusion>
  116. </exclusions>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.netflix.hystrix</groupId>
  120. <artifactId>hystrix-core</artifactId>
  121. <version>1.5.12</version>
  122. </dependency>
  123. <!-- https://mvnrepository.com/artifact/com.netflix.hystrix/hystrix-javanica -->
  124. <dependency>
  125. <groupId>com.netflix.hystrix</groupId>
  126. <artifactId>hystrix-javanica</artifactId>
  127. <version>1.5.12</version>
  128. </dependency>
  129. <!-- http://mvnrepository.com/artifact/com.netflix.hystrix/hystrix-metrics-event-stream -->
  130. <dependency>
  131. <groupId>com.netflix.hystrix</groupId>
  132. <artifactId>hystrix-metrics-event-stream</artifactId>
  133. <version>1.5.12</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.springframework.boot</groupId>
  137. <artifactId>spring-boot-starter-tomcat</artifactId>
  138. <scope>provided</scope>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.rocketmq</groupId>
  142. <artifactId>rocketmq-spring-boot-starter</artifactId>
  143. <version>2.1.1</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.fasterxml.jackson.datatype</groupId>
  147. <artifactId>jackson-datatype-jsr310</artifactId>
  148. <version>2.12.0</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>com.google.zxing</groupId>
  152. <artifactId>core</artifactId>
  153. <version>3.4.0</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>com.google.zxing</groupId>
  157. <artifactId>javase</artifactId>
  158. <version>3.4.0</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.apache.poi</groupId>
  162. <artifactId>poi</artifactId>
  163. <version>3.8</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.apache.poi</groupId>
  167. <artifactId>poi-ooxml</artifactId>
  168. <version>3.8</version>
  169. </dependency>
  170. </dependencies>
  171. <build>
  172. <plugins>
  173. <plugin>
  174. <groupId>org.apache.maven.plugins</groupId>
  175. <artifactId>maven-compiler-plugin</artifactId>
  176. <configuration>
  177. <source>${java.version}</source>
  178. <target>${java.version}</target>
  179. </configuration>
  180. </plugin>
  181. <plugin>
  182. <groupId>org.apache.maven.plugins</groupId>
  183. <artifactId>maven-surefire-plugin</artifactId>
  184. <version>${maven-surefire-plugin.version}</version>
  185. <configuration>
  186. <skipTests>true</skipTests> <!--默认关掉单元测试 -->
  187. </configuration>
  188. </plugin>
  189. </plugins>
  190. </build>
  191. </project>