This repository was archived by the owner on Sep 19, 2023. It is now read-only.

File tree

7 files changed

+421
-225
lines changed

7 files changed

+421
-225
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
^/\*$
2+
^ \* Copyright \d\d\d\d,? Google (Inc\.|LLC)$
3+
^ \*$
4+
^ \* Licensed under the Apache License, Version 2\.0 \(the "License"\);$
5+
^ \* you may not use this file except in compliance with the License\.$
6+
^ \* You may obtain a copy of the License at$
7+
^ \*$
8+
^ \*[ ]+https?://www.apache.org/licenses/LICENSE-2\.0$
9+
^ \*$
10+
^ \* Unless required by applicable law or agreed to in writing, software$
11+
^ \* distributed under the License is distributed on an "AS IS" BASIS,$
12+
^ \* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied\.$
13+
^ \* See the License for the specific language governing permissions and$
14+
^ \* limitations under the License\.$
15+
^ \*/$
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0"?>
2+
<!DOCTYPE module PUBLIC
3+
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
4+
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
5+
<module name="Checker">
6+
<module name="RegexpHeader">
7+
<property name="fileExtensions" value="java"/>
8+
<property name="headerFile" value="${checkstyle.header.file}"/>
9+
</module>
10+
</module>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,192 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<groupId>com.google.cloud</groupId>
7+
<artifactId>first-party-dependencies</artifactId>
8+
<packaging>pom</packaging>
9+
<version>2.1.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-shared-dependencies:current} -->
10+
<name>Google Cloud First-party Shared Dependencies</name>
11+
<url>https://.com/googleapis/java-shared-dependencies</url>
12+
<description>
13+
Shared first-party dependencies for Google Cloud Java libraries.
14+
</description>
15+
16+
<parent>
17+
<groupId>com.google.cloud</groupId>
18+
<artifactId>google-cloud-shared-config</artifactId>
19+
<version>1.0.1</version>
20+
</parent>
21+
22+
<organization>
23+
<name>Google LLC</name>
24+
</organization>
25+
26+
<scm>
27+
<connection>scm:git:[email protected]:googleapis/java-shared-dependencies.git</connection>
28+
<developerConnection>scm:git:[email protected]:googleapis/java-shared-dependencies.git</developerConnection>
29+
<url>https://.com/googleapis/java-shared-dependencies</url>
30+
<tag>HEAD</tag>
31+
</scm>
32+
33+
<issueManagement>
34+
<url>https://.com/googleapis/java-shared-dependencies/issues</url>
35+
<system> Issues</system>
36+
</issueManagement>
37+
38+
<distributionManagement>
39+
<snapshotRepository>
40+
<id>sonatype-nexus-snapshots</id>
41+
<url>https://google.oss.sonatype.org/content/repositories/snapshots</url>
42+
</snapshotRepository>
43+
<repository>
44+
<id>sonatype-nexus-staging</id>
45+
<url>https://google.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
46+
</repository>
47+
</distributionManagement>
48+
49+
<licenses>
50+
<license>
51+
<name>Apache-2.0</name>
52+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
53+
</license>
54+
</licenses>
55+
<properties>
56+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
57+
<site.installationModule>${project.artifactId}</site.installationModule>
58+
59+
<grpc.version>1.40.0</grpc.version>
60+
<gax.version>2.3.0</gax.version>
61+
<grpc-gcp.version>1.1.0</grpc-gcp.version>
62+
<guava.version>30.1.1-jre</guava.version>
63+
<protobuf.version>3.17.3</protobuf.version>
64+
<google.api-common.version>2.0.1</google.api-common.version>
65+
<google.common-protos.version>2.3.2</google.common-protos.version>
66+
<google.core.version>2.1.1</google.core.version>
67+
<google.auth.version>1.1.0</google.auth.version>
68+
<google.http-client.version>1.39.2</google.http-client.version>
69+
<google.oauth-client.version>1.32.1</google.oauth-client.version>
70+
<google.api-client.version>1.32.1</google.api-client.version>
71+
<iam.version>1.1.0</iam.version>
72+
</properties>
73+
74+
<dependencyManagement>
75+
<dependencies>
76+
<dependency>
77+
<groupId>io.grpc</groupId>
78+
<artifactId>grpc-bom</artifactId>
79+
<version>${grpc.version}</version>
80+
<type>pom</type>
81+
<scope>import</scope>
82+
</dependency>
83+
<dependency>
84+
<groupId>com.google.api</groupId>
85+
<artifactId>gax-bom</artifactId>
86+
<version>${gax.version}</version>
87+
<type>pom</type>
88+
<scope>import</scope>
89+
</dependency>
90+
<dependency>
91+
<groupId>com.google.cloud</groupId>
92+
<artifactId>grpc-gcp</artifactId>
93+
<version>${grpc-gcp.version}</version>
94+
</dependency>
95+
<dependency>
96+
<groupId>com.google.guava</groupId>
97+
<artifactId>guava-bom</artifactId>
98+
<version>${guava.version}</version>
99+
<type>pom</type>
100+
<scope>import</scope>
101+
</dependency>
102+
103+
<dependency>
104+
<groupId>com.google.protobuf</groupId>
105+
<artifactId>protobuf-bom</artifactId>
106+
<version>${protobuf.version}</version>
107+
<type>pom</type>
108+
<scope>import</scope>
109+
</dependency>
110+
<dependency>
111+
<groupId>com.google.api</groupId>
112+
<artifactId>api-common</artifactId>
113+
<version>${google.api-common.version}</version>
114+
</dependency>
115+
<dependency>
116+
<groupId>com.google.api.grpc</groupId>
117+
<artifactId>proto-google-common-protos</artifactId>
118+
<version>${google.common-protos.version}</version>
119+
</dependency>
120+
<dependency>
121+
<groupId>com.google.api.grpc</groupId>
122+
<artifactId>grpc-google-common-protos</artifactId>
123+
<version>${google.common-protos.version}</version>
124+
</dependency>
125+
<dependency>
126+
<groupId>com.google.cloud</groupId>
127+
<artifactId>google-cloud-core-bom</artifactId>
128+
<version>${google.core.version}</version>
129+
<type>pom</type>
130+
<scope>import</scope>
131+
</dependency>
132+
<dependency>
133+
<groupId>com.google.auth</groupId>
134+
<artifactId>google-auth-library-bom</artifactId>
135+
<version>${google.auth.version}</version>
136+
<type>pom</type>
137+
<scope>import</scope>
138+
</dependency>
139+
<dependency>
140+
<groupId>com.google.http-client</groupId>
141+
<artifactId>google-http-client-bom</artifactId>
142+
<version>${google.http-client.version}</version>
143+
<type>pom</type>
144+
<scope>import</scope>
145+
</dependency>
146+
<dependency>
147+
<groupId>com.google.oauth-client</groupId>
148+
<artifactId>google-oauth-client-bom</artifactId>
149+
<version>${google.oauth-client.version}</version>
150+
<type>pom</type>
151+
<scope>import</scope>
152+
</dependency>
153+
<dependency>
154+
<groupId>com.google.api-client</groupId>
155+
<artifactId>google-api-client-bom</artifactId>
156+
<version>${google.api-client.version}</version>
157+
<type>pom</type>
158+
<scope>import</scope>
159+
</dependency>
160+
<dependency>
161+
<groupId>com.google.api.grpc</groupId>
162+
<artifactId>proto-google-iam-v1</artifactId>
163+
<version>${iam.version}</version>
164+
</dependency>
165+
166+
<!-- Following test deps are kept to keep them consistent with versions above -->
167+
<dependency>
168+
<groupId>com.google.api.grpc</groupId>
169+
<artifactId>grpc-google-iam-v1</artifactId>
170+
<version>${iam.version}</version>
171+
</dependency>
172+
<dependency>
173+
<groupId>com.google.api</groupId>
174+
<artifactId>gax-grpc</artifactId>
175+
<version>${gax.version}</version>
176+
<classifier>testlib</classifier>
177+
</dependency>
178+
<dependency>
179+
<groupId>com.google.cloud</groupId>
180+
<artifactId>google-cloud-core</artifactId>
181+
<version>${google.core.version}</version>
182+
<type>test-jar</type>
183+
</dependency>
184+
<dependency>
185+
<groupId>com.google.cloud</groupId>
186+
<artifactId>google-cloud-core</artifactId>
187+
<version>${google.core.version}</version>
188+
<classifier>tests</classifier>
189+
</dependency>
190+
</dependencies>
191+
</dependencyManagement>
192+
</project>

0 commit comments

Comments
 (0)