-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpom.xml
102 lines (88 loc) · 2.87 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.hks.rpc</groupId>
<artifactId>RPC-SkillTree</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>SkillTree</name>
<description>rpc project for Spring Boot</description>
<modules>
<module>google-protocol-buffer</module>
<module>google-snappy</module>
<module>dubbo-api</module>
<module>dubbo-consumer</module>
<module>dubbo-provider</module>
<module>grpc-api</module>
<module>grpc-consumer</module>
<module>grpc-provider</module>
<module>thrift-api</module>
<module>thrift-client</module>
<module>thrift-server</module>
<module>spring-dubbo-api</module>
<module>spring-dubbo-consumer</module>
<module>spring-dubbo-provider</module>
<module>spring-thrift-api</module>
<module>spring-thrift-client</module>
<module>spring-thrift-common</module>
<module>spring-thrift-server</module>
<module>spring-zookeeper-invoker</module>
<module>spring-zookeeper-register</module>
<module>spring-grpc-common</module>
<module>grpc-stream-client</module>
<module>grpc-stream-server</module>
<module>grpc-stream-double</module>
</modules>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.1.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<spring-boot-starter-dubbo.version>1.1.1</spring-boot-starter-dubbo.version>
</properties>
<dependencies>
<!-- 如果使用dubbo2.6.0,把注释去掉 -->
<!-- <dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo</artifactId>
<version>2.6.0</version>
</dependency> -->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>