Skip to content

Commit a30ecb6

Browse files
author
“Rain-with-me”
committed
dubbo
1 parent ef401dc commit a30ecb6

File tree

89 files changed

+1523
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+1523
-0
lines changed

dubbo/1-old-spring-boot-dubbo-demo/.idea/compiler.xml

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dubbo/1-old-spring-boot-dubbo-demo/.idea/encodings.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dubbo/1-old-spring-boot-dubbo-demo/.idea/inspectionProfiles/Project_Default.xml

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dubbo/1-old-spring-boot-dubbo-demo/.idea/jarRepositories.xml

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dubbo/1-old-spring-boot-dubbo-demo/.idea/misc.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dubbo/1-old-spring-boot-dubbo-demo/.idea/uiDesigner.xml

Lines changed: 124 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dubbo/1-old-spring-boot-dubbo-demo/.idea/workspace.xml

Lines changed: 91 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.sans.dubbo</groupId>
6+
<artifactId>spring-boot-dubbo-demo</artifactId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
<name>spring-boot-dubbo-demo</name>
9+
<description>Demo project for Spring Boot</description>
10+
11+
<packaging>pom</packaging>
12+
13+
<parent>
14+
<groupId>org.springframework.boot</groupId>
15+
<artifactId>spring-boot-starter-parent</artifactId>
16+
<version>2.2.1.RELEASE</version>
17+
<relativePath/>
18+
</parent>
19+
20+
<modules>
21+
<module>spring-boot-dubbo-base</module>
22+
<module>spring-boot-dubbo-consumer</module>
23+
<module>spring-boot-dubbo-provider</module>
24+
</modules>
25+
26+
<properties>
27+
<java.version>1.8</java.version>
28+
</properties>
29+
30+
<dependencies>
31+
<dependency>
32+
<groupId>org.springframework.boot</groupId>
33+
<artifactId>spring-boot-starter</artifactId>
34+
</dependency>
35+
<dependency>
36+
<groupId>org.springframework.boot</groupId>
37+
<artifactId>spring-boot-starter-test</artifactId>
38+
<scope>test</scope>
39+
<exclusions>
40+
<exclusion>
41+
<groupId>org.junit.vintage</groupId>
42+
<artifactId>junit-vintage-engine</artifactId>
43+
</exclusion>
44+
</exclusions>
45+
</dependency>
46+
</dependencies>
47+
48+
<build>
49+
<plugins>
50+
<plugin>
51+
<groupId>org.springframework.boot</groupId>
52+
<artifactId>spring-boot-maven-plugin</artifactId>
53+
</plugin>
54+
</plugins>
55+
</build>
56+
57+
</project>

0 commit comments

Comments
 (0)