This is an automated email from the ASF dual-hosted git repository. zjffdu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push: new 06d168b [ZEPPELIN-4528]bump up the bigquery dependencies version 06d168b is described below commit 06d168bec603733dd015f6c82f74bc5772981331 Author: fdai <f...@twitter.com> AuthorDate: Wed Jan 1 21:15:45 2020 -0800 [ZEPPELIN-4528]bump up the bigquery dependencies version ### What is this PR for? Improvements to have latest bigquery google api libs ### What type of PR is it? Improvement ### Todos N/A ### What is the Jira issue? [ZEPPELIN-4528] https://issues.apache.org/jira/browse/ZEPPELIN-4528 ### How should this be tested? The Travis CI https://travis-ci.org/fred521/zeppelin/builds/631753220 ### Screenshots (if appropriate) N/A ### Questions: * Does the licenses files need update? No * Is there breaking changes for older versions? No * Does this needs documentation? No Author: fdai <f...@twitter.com> Closes #3583 from fred521/fdai/bump_up_bigquery_dependencies and squashes the following commits: d660ba262 [fdai] bump up the gson --- bigquery/pom.xml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/bigquery/pom.xml b/bigquery/pom.xml index ac5ac85..c416e0b 100644 --- a/bigquery/pom.xml +++ b/bigquery/pom.xml @@ -34,14 +34,16 @@ <name>Zeppelin: BigQuery interpreter</name> <properties> - <project.http.version>1.21.0</project.http.version> - <project.oauth.version>1.21.0</project.oauth.version> + <project.http.version>1.34.0</project.http.version> + <project.oauth.version>1.30.5</project.oauth.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <bigquery.test.exclude>**/BigQueryInterpreterTest.java</bigquery.test.exclude> <!-- library versions --> - <bigquery.api.version>v2-rev265-1.21.0</bigquery.api.version> - <gson.version>2.6</gson.version> + <bigquery.api.version>v2-rev20190917-1.30.3</bigquery.api.version> + <gson.version>2.8.6</gson.version> + <guava.version>22.0</guava.version> + <interpreter.name>bigquery</interpreter.name> </properties> @@ -72,6 +74,11 @@ <artifactId>gson</artifactId> <version>${gson.version}</version> </dependency> + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>${guava.version}</version> + </dependency> </dependencies>