Browse Source

spring-boot-demo-dubbo 完成

pull/1/head
Yangkai.Shen 5 years ago
parent
commit
e60e36c90a
3 changed files with 12 additions and 9 deletions
  1. +0
    -9
      spring-boot-demo-dubbo/pom.xml
  2. +6
    -0
      spring-boot-demo-dubbo/spring-boot-demo-dubbo-consumer/pom.xml
  3. +6
    -0
      spring-boot-demo-dubbo/spring-boot-demo-dubbo-provider/pom.xml

+ 0
- 9
spring-boot-demo-dubbo/pom.xml View File

@@ -29,13 +29,4 @@
<zkclient.version>0.10</zkclient.version> <zkclient.version>0.10</zkclient.version>
</properties> </properties>


<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

</project> </project>

+ 6
- 0
spring-boot-demo-dubbo/spring-boot-demo-dubbo-consumer/pom.xml View File

@@ -56,6 +56,12 @@


<build> <build>
<finalName>spring-boot-demo-dubbo-consumer</finalName> <finalName>spring-boot-demo-dubbo-consumer</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build> </build>


</project> </project>

+ 6
- 0
spring-boot-demo-dubbo/spring-boot-demo-dubbo-provider/pom.xml View File

@@ -56,6 +56,12 @@


<build> <build>
<finalName>spring-boot-demo-dubbo-provider</finalName> <finalName>spring-boot-demo-dubbo-provider</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build> </build>


</project> </project>

Loading…
Cancel
Save