pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>backstage</artifactId>
  6. <groupId>com.txz</groupId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>backstage-service</artifactId>
  11. <packaging>jar</packaging>
  12. <version>1.0.0-SNAPSHOT</version>
  13. <properties>
  14. <java.version>1.8</java.version>
  15. </properties>
  16. <!-- Inherit defaults from Spring Boot -->
  17. <dependencies>
  18. <!--Spring Boot依赖-->
  19. <!-- <dependency>-->
  20. <!-- <groupId>com.yiweikeji</groupId>-->
  21. <!-- <artifactId>operating-interface</artifactId>-->
  22. <!-- <version>1.0.0-SNAPSHOT</version>-->
  23. <!-- </dependency>-->
  24. <!-- <dependency>-->
  25. <!-- <groupId>com.medipath</groupId>-->
  26. <!-- <artifactId>cif-api</artifactId>-->
  27. <!-- <version>1.0.0-SNAPSHOT</version>-->
  28. <!-- </dependency>-->
  29. <!--异维科技公共包依赖-->
  30. <dependency>
  31. <groupId>com.txz</groupId>
  32. <artifactId>common</artifactId>
  33. <version>1.0.0-SNAPSHOT</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-actuator</artifactId>
  38. </dependency>
  39. <!--异维科技dubbo接口包依赖-->
  40. <dependency>
  41. <groupId>com.txz</groupId>
  42. <artifactId>backstage-api</artifactId>
  43. <version>1.0.0-SNAPSHOT</version>
  44. </dependency>
  45. <!-- 删除 Zuul 依赖,添加 Spring Cloud Gateway 依赖 -->
  46. <!-- <dependency> -->
  47. <!-- <groupId>org.springframework.cloud</groupId> -->
  48. <!-- <artifactId>spring-cloud-starter-netflix-zuul</artifactId> -->
  49. <!-- <version>2.2.10.RELEASE</version> -->
  50. <!-- </dependency> -->
  51. <!--test依赖-->
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-test</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-redis</artifactId>
  60. <version>1.3.8.RELEASE</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>cn.hutool</groupId>
  64. <artifactId>hutool-all</artifactId>
  65. <version>RELEASE</version>
  66. <scope>compile</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.cloud</groupId>
  70. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.cloud</groupId>
  74. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.dubbo</groupId>
  78. <artifactId>dubbo-spring-boot-starter</artifactId>
  79. <version>3.0.10</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.dubbo</groupId>
  83. <artifactId>dubbo</artifactId>
  84. <version>3.0.10</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.esotericsoftware</groupId>
  88. <artifactId>kryo</artifactId>
  89. <version>4.0.2</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>de.javakaffee</groupId>
  93. <artifactId>kryo-serializers</artifactId>
  94. <version>0.45</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.dubbo</groupId>
  98. <artifactId>dubbo-serialization-kryo</artifactId>
  99. <version>2.7.9</version>
  100. </dependency>
  101. <!-- Dubbo Registry Nacos -->
  102. <dependency>
  103. <groupId>org.apache.dubbo</groupId>
  104. <artifactId>dubbo-registry-nacos</artifactId>
  105. <version>3.0.10</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springdoc</groupId>
  109. <artifactId>springdoc-openapi-ui</artifactId>
  110. <version>1.6.14</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.alibaba.cloud</groupId>
  114. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  115. <version>2.2.9.RELEASE</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.alibaba.cloud</groupId>
  119. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  120. <version>2.2.9.RELEASE</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>io.grpc</groupId>
  124. <artifactId>grpc-netty</artifactId>
  125. <version>1.56.1</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>io.grpc</groupId>
  129. <artifactId>grpc-protobuf</artifactId>
  130. <version>1.56.1</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>io.grpc</groupId>
  134. <artifactId>grpc-stub</artifactId>
  135. <version>1.56.1</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.alibaba.nacos</groupId>
  139. <artifactId>nacos-client</artifactId>
  140. <version>2.2.2</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.springframework.cloud</groupId>
  144. <artifactId>spring-cloud-starter-gateway</artifactId>
  145. <version>3.1.5</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>junit</groupId>
  149. <artifactId>junit</artifactId>
  150. <version>4.13.2</version>
  151. <scope>test</scope>
  152. </dependency>
  153. </dependencies>
  154. <build>
  155. <plugins>
  156. <plugin>
  157. <groupId>org.springframework.boot</groupId>
  158. <artifactId>spring-boot-maven-plugin</artifactId>
  159. <configuration>
  160. <finalName>backstage</finalName>
  161. </configuration>
  162. </plugin>
  163. <plugin>
  164. <artifactId>maven-compiler-plugin</artifactId>
  165. <configuration>
  166. <source>${java.version}</source>
  167. <target>${java.version}</target>
  168. <encoding>UTF-8</encoding>
  169. </configuration>
  170. </plugin>
  171. </plugins>
  172. </build>
  173. </project>