|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 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 | | - <modelVersion>4.0.0</modelVersion> |
5 | | - |
6 | | - <artifactId>dubbo-api</artifactId> |
7 | | - <version>0.0.1-SNAPSHOT</version> |
8 | | - <packaging>jar</packaging> |
9 | | - |
10 | | - <parent> |
11 | | - <groupId>com.coderqian</groupId> |
12 | | - <artifactId>spring-boot-dubbo-cli</artifactId> |
13 | | - <version>1.0-SNAPSHOT</version> |
14 | | - </parent> |
15 | | - |
16 | | - <name>dubbo-api</name> |
17 | | - <description>Demo project for Spring Boot</description> |
18 | | - |
19 | | - <properties> |
20 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
21 | | - <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
22 | | - <java.version>1.8</java.version> |
23 | | - </properties> |
24 | | - |
25 | | - <dependencies> |
26 | | - <dependency> |
27 | | - <groupId>org.springframework.boot</groupId> |
28 | | - <artifactId>spring-boot-starter</artifactId> |
29 | | - </dependency> |
30 | | - |
31 | | - <dependency> |
32 | | - <groupId>org.springframework.boot</groupId> |
33 | | - <artifactId>spring-boot-starter-web</artifactId> |
34 | | - </dependency> |
35 | | - |
36 | | - <dependency> |
37 | | - <groupId>org.springframework.boot</groupId> |
38 | | - <artifactId>spring-boot-starter-test</artifactId> |
39 | | - <scope>test</scope> |
40 | | - </dependency> |
41 | | - |
42 | | - <dependency> |
43 | | - <groupId>com.alibaba.boot</groupId> |
44 | | - <artifactId>dubbo-spring-boot-starter</artifactId> |
45 | | - <version>0.2.0</version> |
46 | | - </dependency> |
47 | | - </dependencies> |
48 | | - |
49 | | - <build> |
50 | | - <plugins> |
51 | | - <plugin> |
52 | | - <groupId>org.springframework.boot</groupId> |
53 | | - <artifactId>spring-boot-maven-plugin</artifactId> |
54 | | - </plugin> |
55 | | - </plugins> |
56 | | - </build> |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <artifactId>dubbo-api</artifactId> |
| 7 | + <version>0.0.1-SNAPSHOT</version> |
| 8 | + <packaging>jar</packaging> |
| 9 | + |
| 10 | + <parent> |
| 11 | + <groupId>com.coderqian</groupId> |
| 12 | + <artifactId>spring-boot-dubbo-cli</artifactId> |
| 13 | + <version>1.0-SNAPSHOT</version> |
| 14 | + </parent> |
| 15 | + |
| 16 | + <name>dubbo-api</name> |
| 17 | + <description>Demo project for Spring Boot</description> |
| 18 | + |
| 19 | + <properties> |
| 20 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 21 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 22 | + <java.version>1.8</java.version> |
| 23 | + </properties> |
| 24 | + |
| 25 | + <dependencies> |
| 26 | + <dependency> |
| 27 | + <groupId>org.springframework.boot</groupId> |
| 28 | + <artifactId>spring-boot-starter-web</artifactId> |
| 29 | + </dependency> |
| 30 | + |
| 31 | + <dependency> |
| 32 | + <groupId>org.projectlombok</groupId> |
| 33 | + <artifactId>lombok</artifactId> |
| 34 | + <version>1.18.2</version> |
| 35 | + <scope>provided</scope> |
| 36 | + </dependency> |
| 37 | + </dependencies> |
| 38 | + |
| 39 | + <build> |
| 40 | + <plugins> |
| 41 | + <plugin> |
| 42 | + <groupId>org.springframework.boot</groupId> |
| 43 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 44 | + </plugin> |
| 45 | + </plugins> |
| 46 | + </build> |
57 | 47 |
|
58 | 48 |
|
59 | 49 | </project> |
0 commit comments