forked from dacort/metabase-athena-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
28 lines (22 loc) · 771 Bytes
/
project.clj
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
(defproject metabase/athena-driver "1.0.0-athena-jdbc-2.0.13"
:min-lein-version "2.5.0"
; Run `make download-jar` first, to initialize in-project maven repo and download third-party jar.
:repositories [["athena" {:url "file:maven_repository"}]]
:dependencies
[[athena/athena-jdbc "2.0.13"]]
: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 "athena.metabase-driver.jar"}
:unit_tests
{:test-paths ^:replace ["test_unit"]}})