forked from apache/dubbo-spring-boot-project
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
107 lines (95 loc) · 3.97 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
103
104
105
106
107
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.alibaba.boot</groupId>
<artifactId>dubbo-spring-boot-project</artifactId>
<version>0.1.0</version>
<packaging>pom</packaging>
<name>Dubbo Spring Boot Project</name>
<description>Dubbo Spring Boot Project</description>
<url>https://github.com/dubbo/dubbo-spring-boot-project</url>
<modules>
<module>dubbo-spring-boot-parent</module>
<module>dubbo-spring-boot-autoconfigure</module>
<module>dubbo-spring-boot-starter</module>
<module>dubbo-spring-boot-samples</module>
<module>dubbo-spring-boot-actuator</module>
</modules>
<organization>
<name>Alibaba Group.</name>
<url>http://www.alibabagroup.com/en/global/home</url>
</organization>
<scm>
<url>https://github.com/dubbo/dubbo-spring-boot-project</url>
<connection>scm:git:git:////github.com/dubbo/dubbo-spring-boot-project.git</connection>
<developerConnection>scm:git:ssh://git@//github.com/dubbo/dubbo-spring-boot-project.git</developerConnection>
</scm>
<issueManagement>
<system>Github</system>
<url>https://github.com/dubbo/dubbo-spring-boot-project/issues</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>Dubbo User Mailling List</name>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
<post>[email protected]</post>
<archive>http://groups.google.com/group/dubbo</archive>
</mailingList>
<mailingList>
<name>Dubbo Developer Mailling List</name>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
<post>[email protected]</post>
<archive>http://groups.google.com/group/dubbo-developers</archive>
</mailingList>
</mailingLists>
<developers>
<developer>
<id>dubbo.io</id>
<name>The Dubbo Project Contributors</name>
<email>[email protected]</email>
<url>http://dubbo.io</url>
<organization>The Dubbo Project</organization>
<organizationUrl>http://dubbo.io</organizationUrl>
</developer>
</developers>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>