-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathproject.clj
More file actions
31 lines (25 loc) · 1013 Bytes
/
Copy pathproject.clj
File metadata and controls
31 lines (25 loc) · 1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
(defproject metabase/elasticsearch-driver "1.0.0-elasticsearch-jdbc-7.10.1"
:min-lein-version "2.5.0"
:dependencies
[[org.elasticsearch.plugin/x-pack-sql-jdbc "7.10.1"]]
; :repositories
; [["athena" {:url "https://s3.amazonaws.com/athena-downloads/drivers/JDBC/SimbaAthenaJDBC_2.0.13/AthenaJDBC42_2.0.13.jar"}]]
; TODO: Download from source URL
; For now, you have to download the jar above into ~/.m2/repository/athena/athena-jdbc/2.0.13/athena-jdbc-2.0.13.jar
; :aliases
; {"test" ["with-profile" "+unit_tests" "test"]}
:profiles
{:provided
{:dependencies
[[org.clojure/clojure "1.10.0"]
[metabase-core "1.0.0-SNAPSHOT"]]}
:uberjar
{:auto-clean true
:aot :all
:omit-source true
:javac-options ["-target" "1.8", "-source" "1.8"]
:target-path "target/%s"
:uberjar-name "elasticsearch.metabase-driver.jar"
:manifest {"X-Compile-Elasticsearch-Version" "7.10.1"}}
:unit_tests
{:test-paths ^:replace ["test_unit"]}})