Skip to content

Commit 81b3980

Browse files
OSV-3534: fix build failure caused by OSV-3534
1 parent 6227b48 commit 81b3980

File tree

1 file changed

+32
-8
lines changed
  • zeppelin-plugins/notebookrepo/gcs

1 file changed

+32
-8
lines changed

zeppelin-plugins/notebookrepo/gcs/pom.xml

Lines changed: 32 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<description>NotebookRepo implementation based on Google Cloud Storage</description>
3535

3636
<properties>
37-
<gcs.storage.version>1.116.0</gcs.storage.version>
37+
<gcs.storage.version>1.118.1</gcs.storage.version>
3838
<google.testing.nio.version>0.32.0-alpha</google.testing.nio.version>
3939
<google.truth.version>0.27</google.truth.version>
4040
<plugin.name>NotebookRepo/GCSNotebookRepo</plugin.name>
@@ -87,19 +87,39 @@
8787
<groupId>com.google.oauth-client</groupId>
8888
<artifactId>google-oauth-client</artifactId>
8989
</exclusion>
90+
<exclusion>
91+
<groupId>com.google.http-client</groupId>
92+
<artifactId>google-http-client-apache-v2</artifactId>
93+
</exclusion>
94+
<exclusion>
95+
<groupId>io.opencensus</groupId>
96+
<artifactId>opencensus-api</artifactId>
97+
</exclusion>
98+
<exclusion>
99+
<groupId>io.grpc</groupId>
100+
<artifactId>grpc-context</artifactId>
101+
</exclusion>
102+
<exclusion>
103+
<groupId>com.google.http-client</groupId>
104+
<artifactId>google-http-client-gson</artifactId>
105+
</exclusion>
90106
</exclusions>
91107
</dependency>
92108

93109
<dependency>
94110
<groupId>com.google.api-client</groupId>
95111
<artifactId>google-api-client</artifactId>
96112
<version>${project.oauth.version}</version>
97-
</dependency>
98-
99-
<dependency>
100-
<groupId>com.google.oauth-client</groupId>
101-
<artifactId>google-oauth-client</artifactId>
102-
<version>${project.oauth.version}</version>
113+
<exclusions>
114+
<exclusion>
115+
<groupId>com.google.http-client</groupId>
116+
<artifactId>google-http-client</artifactId>
117+
</exclusion>
118+
<exclusion>
119+
<groupId>com.google.guava</groupId>
120+
<artifactId>guava</artifactId>
121+
</exclusion>
122+
</exclusions>
103123
</dependency>
104124

105125
<dependency>
@@ -160,7 +180,7 @@
160180
<dependency>
161181
<groupId>com.google.http-client</groupId>
162182
<artifactId>google-http-client-jackson2</artifactId>
163-
<version>1.23.0</version>
183+
<version>1.47.1</version>
164184
<exclusions>
165185
<exclusion>
166186
<groupId>com.google.code.findbugs</groupId>
@@ -170,6 +190,10 @@
170190
<groupId>com.fasterxml.jackson.core</groupId>
171191
<artifactId>jackson-core</artifactId>
172192
</exclusion>
193+
<exclusion>
194+
<groupId>com.google.http-client</groupId>
195+
<artifactId>google-http-client</artifactId>
196+
</exclusion>
173197
</exclusions>
174198
</dependency>
175199
<dependency>

0 commit comments

Comments
 (0)