forked from googleapis/google-cloud-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
131 lines (131 loc) · 4.08 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?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/googleapis/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>
<deploy.autorelease>false</deploy.autorelease>
</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]:googleapis/google-cloud-java.git</connection>
<developerConnection>scm:git:[email protected]:googleapis/google-cloud-java.git</developerConnection>
<url>https://github.com/googleapis/google-cloud-java</url>
<tag>HEAD</tag>
</scm>
<ciManagement>
<system>Circle CI</system>
<url>https://circleci.com/gh/googleapis/google-cloud-java</url>
</ciManagement>
<issueManagement>
<url>https://github.com/googleapis/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-clients</module>
<module>google-cloud-examples</module>
<module>google-cloud-testing</module>
<module>google-cloud-util</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>${deploy.autorelease}</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>com.coveo</groupId>
<artifactId>fmt-maven-plugin</artifactId>
<version>2.13</version>
<configuration>
<style>google</style>
<verbose>true</verbose>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.10.0</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>