forked from microsoft/azure-spring-boot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
64 lines (54 loc) · 2.17 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
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-spring-boot-build</artifactId>
<version>2.2.5-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Azure Spring Boot Build</name>
<description>Build for Microsoft Azure Spring Boot Support</description>
<url>https://github.com/Microsoft/azure-spring-boot</url>
<licenses>
<license>
<name>MIT</name>
<url>https://github.com/Microsoft/azure-spring-boot/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>ZhijunZhao</id>
<name>Zhijun Zhao</name>
<email>[email protected]</email>
</developer>
<developer>
<id>yungez</id>
<name>Yunge Zhu</name>
<email>[email protected]</email>
</developer>
</developers>
<organization>
<name>Microsoft</name>
<url>https://www.microsoft.com</url>
</organization>
<scm>
<connection>scm:git:git://github.com/Microsoft/azure-spring-boot-starters.git</connection>
<developerConnection>scm:git:ssh://github.com:Microsoft/azure-spring-boot-starters.git</developerConnection>
<url>https://github.com/Microsoft/azure-spring-boot/tree/master</url>
</scm>
<modules>
<module>azure-spring-boot-bom</module>
<module>azure-spring-boot-parent</module>
<module>azure-spring-boot</module>
<module>azure-spring-boot-starters</module>
<module>azure-spring-boot-samples</module>
<module>azure-spring-boot-tests</module>
</modules>
<distributionManagement>
<snapshotRepository>
<id>nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>