forked from huaweicloud/spring-cloud-huawei
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
115 lines (108 loc) · 4.12 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
108
109
110
111
112
113
114
115
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~ The ASF licenses this file to You under the Apache License, Version 2.0
~ (the "License"); you may not use this file except in compliance with
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-build</artifactId>
<!-- This version should match spring-cloud-dependencies 'spring-cloud-build.version' -->
<version>2.2.3.RELEASE</version>
</parent>
<groupId>com.huaweicloud</groupId>
<artifactId>spring-cloud-huawei</artifactId>
<version>1.3.3-Hoxton-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Spring Cloud Huawei</name>
<properties>
<java.version>1.8</java.version>
<!-- spring-cloud-dependencies do not import spring-boot-dependencies, spring-boot-dependencies
import spring-framework-bom. No need configure spring version. -->
<spring-cloud.version>Hoxton.SR4</spring-cloud.version>
<spring-boot.version>2.2.5.RELEASE</spring-boot.version>
<servicecomb.version>2.0.2</servicecomb.version>
</properties>
<modules>
<module>spring-cloud-huawei-dependencies</module>
<module>spring-cloud-huawei-parents</module>
<module>spring-cloud-huawei-common</module>
<module>spring-cloud-huawei-servicecomb-discovery</module>
<module>spring-cloud-huawei-sample</module>
<module>spring-cloud-starter-huawei</module>
<module>spring-cloud-huawei-dtm</module>
<module>spring-cloud-huawei-config</module>
<module>spring-cloud-huawei-router-core</module>
<module>spring-cloud-huawei-router-client</module>
<module>spring-cloud-huawei-swagger</module>
</modules>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/huaweicloud/spring-cloud-huawei</url>
<connection>scm:git:git://github.com/huaweicloud/spring-cloud-huawei.git</connection>
<developerConnection>scm:git:ssh://[email protected]/huaweicloud/spring-cloud-huawei.git
</developerConnection>
<tag>HEAD</tag>
</scm>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>oss</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>oss</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>it</id>
<modules>
<module>integration-tests</module>
<module>coverage-reports</module>
</modules>
</profile>
</profiles>
</project>