Skip to content

Commit 4481c27

Browse files
authored
deps: update core dependencies
* deps: update core dependencies * build: fix dependencies and linkage monitor * build: fix ignore unused declared dependency
1 parent d6d74a1 commit 4481c27

File tree

2 files changed

+40
-5
lines changed

2 files changed

+40
-5
lines changed

google-cloud-datastore/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,14 @@
7474
<groupId>com.google.http-client</groupId>
7575
<artifactId>google-http-client</artifactId>
7676
</dependency>
77+
<dependency>
78+
<groupId>com.google.http-client</groupId>
79+
<artifactId>google-http-client-jackson2</artifactId>
80+
</dependency>
81+
<dependency>
82+
<groupId>com.google.oauth-client</groupId>
83+
<artifactId>google-oauth-client</artifactId>
84+
</dependency>
7785
<dependency>
7886
<groupId>com.google.auth</groupId>
7987
<artifactId>google-auth-library-oauth2-http</artifactId>

pom.xml

Lines changed: 32 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,11 @@
152152
<github.global.server>github</github.global.server>
153153
<site.installationModule>google-cloud-datastore-parent</site.installationModule>
154154
<project.javadoc.protobufBaseURL>https://googleapis.dev/java/google-api-grpc/latest</project.javadoc.protobufBaseURL>
155-
<google.core.version>1.92.0</google.core.version>
155+
<google.core.version>1.92.4</google.core.version>
156156
<google.api-common.version>1.8.1</google.api-common.version>
157157
<google.common-protos.version>1.17.0</google.common-protos.version>
158-
<gax.version>1.52.0</gax.version>
159-
<grpc.version>1.26.0</grpc.version>
158+
<gax.version>1.53.1</gax.version>
159+
<grpc.version>1.27.0</grpc.version>
160160
<protobuf.version>3.11.1</protobuf.version>
161161
<junit.version>4.13</junit.version>
162162
<guava.version>28.2-android</guava.version>
@@ -236,12 +236,22 @@
236236
<dependency>
237237
<groupId>com.google.auth</groupId>
238238
<artifactId>google-auth-library-oauth2-http</artifactId>
239-
<version>0.19.0</version>
239+
<version>0.20.0</version>
240240
</dependency>
241241
<dependency>
242242
<groupId>com.google.http-client</groupId>
243243
<artifactId>google-http-client</artifactId>
244-
<version>1.34.0</version>
244+
<version>1.34.1</version>
245+
</dependency>
246+
<dependency>
247+
<groupId>com.google.http-client</groupId>
248+
<artifactId>google-http-client-jackson2</artifactId>
249+
<version>1.34.1</version>
250+
</dependency>
251+
<dependency>
252+
<groupId>com.google.oauth-client</groupId>
253+
<artifactId>google-oauth-client</artifactId>
254+
<version>1.30.5</version>
245255
</dependency>
246256

247257
<dependency>
@@ -277,6 +287,23 @@
277287
</dependencies>
278288
</dependencyManagement>
279289

290+
<build>
291+
<pluginManagement>
292+
<plugins>
293+
<plugin>
294+
<groupId>org.apache.maven.plugins</groupId>
295+
<artifactId>maven-dependency-plugin</artifactId>
296+
<configuration>
297+
<ignoredUnusedDeclaredDependencies>
298+
<ignoredUnusedDeclaredDependency>com.google.http-client:google-http-client-jackson2</ignoredUnusedDeclaredDependency>
299+
<ignoredUnusedDeclaredDependency>com.google.oauth-client:google-oauth-client</ignoredUnusedDeclaredDependency>
300+
</ignoredUnusedDeclaredDependencies>
301+
</configuration>
302+
</plugin>
303+
</plugins>
304+
</pluginManagement>
305+
</build>
306+
280307
<modules>
281308
<module>proto-google-cloud-datastore-v1</module>
282309
<module>google-cloud-datastore</module>

0 commit comments

Comments
 (0)