Skip to content
Snippets Groups Projects
Unverified Commit f1de8819 authored by Cam Saul's avatar Cam Saul Committed by GitHub
Browse files

Fix BigQuery driver from Leiningen [ci bigquery] [ci sparksql] (#11650)

parent e1339af0
No related merge requests found
......@@ -36,6 +36,7 @@
/local/src
/local/src
/locales/metabase-*.pot
/modules/drivers/*/resources/namespaces.edn
/modules/drivers/*/target
/node_modules/
/osx-artifacts
......
(defproject metabase/bigquery-driver "1.0.0-SNAPSHOT-1.27.0"
(defproject metabase/bigquery-driver "1.0.0-SNAPSHOT-1.30.3"
:min-lein-version "2.5.0"
:dependencies
[[com.google.apis/google-api-services-bigquery "v2-rev20181202-1.27.0"]]
[[com.google.apis/google-api-services-bigquery "v2-rev20190917-1.30.3"]]
:profiles
{:provided
{:dependencies
[[org.clojure/clojure "1.10.1"]
[metabase-core "1.0.0-SNAPSHOT"]
[metabase/google-driver "1.0.0-SNAPSHOT-1.27.0"]]}
[metabase/google-driver "1.0.0-SNAPSHOT-1.30.7"]]}
:uberjar
{:auto-clean true
......
info:
name: Metabase BigQuery Driver
version: 1.0.0-SNAPSHOT-1.27.0
version: 1.0.0-SNAPSHOT-1.30.3
description: Allows Metabase to connect to Google BigQuery databases.
dependencies:
- plugin: Metabase Google Drivers Shared Dependencies
......
(defproject metabase/google-driver "1.0.0-SNAPSHOT-1.27.0"
(defproject metabase/google-driver "1.0.0-SNAPSHOT-1.30.7"
:min-lein-version "2.5.0"
:aliases
{"install-for-building-drivers" ["with-profile" "+install-for-building-drivers" "install"]}
:dependencies
[[com.google.api-client/google-api-client "1.27.0"]]
[[com.google.api-client/google-api-client "1.30.7"]]
:profiles
{:provided
......
info:
name: Metabase Google Drivers Shared Dependencies
version: 1.0.0-SNAPSHOT-1.27.0
version: 1.0.0-SNAPSHOT-1.30.7
description: Shared dependencies for BigQuery, Google Analytics, and other Google drivers.
driver:
name: google
......
......@@ -41,7 +41,7 @@
(into {} error)))))))
(defn execute
"`execute` REQUEST, and catch any `GoogleJsonResponseException` is throws, converting them to `ExceptionInfo` and
"Execute `request`, and catch any `GoogleJsonResponseException` is throws, converting them to `ExceptionInfo` and
rethrowing them.
This automatically retries any failed requests up to 2 times."
......
......@@ -7,7 +7,7 @@
;; implementations of things like log4j <-> slf4j, or are part of both hadoop-common and hive-jdbc;
[org.apache.hadoop/hadoop-common "3.1.1"
:exclusions [com.fasterxml.jackson.core/jackson-core
#_com.google.guava/guava
com.google.guava/guava
commons-logging
org.apache.httpcomponents/httpcore
org.codehaus.jackson/jackson-core-asl
......
......@@ -77,6 +77,7 @@
it.unimi.dsi/fastutil]]
[com.draines/postal "2.0.3"] ; SMTP library
[com.jcraft/jsch "0.1.55"] ; SSH client for tunnels
[com.google.guava/guava "28.2-jre"] ; dep for BigQuery, Spark, and GA. Require here rather than letting different dep versions stomp on each other — see comments on #9697
[com.h2database/h2 "1.4.197"] ; embedded SQL database
[com.mattbertolini/liquibase-slf4j "2.0.0"] ; Java Migrations lib logging. We don't actually use this AFAIK (?)
[com.taoensso/nippy "2.14.0"] ; Fast serialization (i.e., GZIP) library for Clojure
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment