forked from googleapis/google-cloud-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
107 lines (107 loc) · 3.32 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
<?xml version="1.0"?>
<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.google.api</groupId>
<artifactId>google-cloud-java</artifactId>
<packaging>pom</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>Google Cloud Java</name>
<url>https://github.com/GoogleCloudPlatform/google-cloud-java</url>
<description>
Root project for Google Cloud clients and their dependencies
</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<developers>
<developer>
<id>garrettjonesgoogle</id>
<name>Garrett Jones</name>
<email>[email protected]</email>
</developer>
<developer>
<id>pongad</id>
<name>Michael Darakananda</name>
<email>[email protected]</email>
</developer>
<developer>
<id>michaelbausor</id>
<name>Micheal Bausor</name>
<email>[email protected]</email>
</developer>
<developer>
<id>vam-google</id>
<name>Vadym Matsishevskyi</name>
<email>[email protected]</email>
</developer>
<developer>
<id>neozwu</id>
<name>Neo Wu</name>
<email>[email protected]</email>
</developer>
<developer>
<id>andreamlin</id>
<name>Andrea Lin</name>
<email>[email protected]</email>
</developer>
<developer>
<id>hzyi-google</id>
<name>Hanzhen Yi</name>
<email>[email protected]</email>
</developer>
</developers>
<organization>
<name>Google LLC</name>
</organization>
<scm>
<connection>scm:git:[email protected]:GoogleCloudPlatform/google-cloud-java.git</connection>
<developerConnection>scm:git:[email protected]:GoogleCloudPlatform/google-cloud-java.git</developerConnection>
<url>https://github.com/GoogleCloudPlatform/google-cloud-java</url>
<tag>HEAD</tag>
</scm>
<ciManagement>
<system>Circle CI</system>
<url>https://circleci.com/gh/GoogleCloudPlatform/google-cloud-java</url>
</ciManagement>
<issueManagement>
<url>https://github.com/GoogleCloudPlatform/google-cloud-java/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<licenses>
<license>
<name>Apache-2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<modules>
<module>google-api-grpc</module>
<module>google-cloud-bom</module>
<module>google-cloud-clients</module>
<module>google-cloud-examples</module>
<module>google-cloud-testing</module>
<module>google-cloud-util</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.4</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>