-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
18 lines (18 loc) · 881 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject org.clojars.aregee/etlp "0.3.3-SNAPSHOT"
:description "A library to develop transducers based ETL processing pipelines with smart data connectors"
:url "https://github.com/aregee/etlp"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.10.1"]
[cheshire "5.10.0"]
[integrant "0.8.0"]
[com.health-samurai/jute "0.2.0-SNAPSHOT"]
[clj-http "3.12.3"]
[org.clojure/tools.logging "1.2.4"]
[org.clojure/core.async "0.4.500"]]
:deploy-repositories {"snapshots" {:url "https://repo.clojars.org" :creds :gpg}}
:plugins [[lein-with-env-vars "0.2.0"]]
:hooks [leiningen.with-env-vars/auto-inject]
:profiles {:dev {:dependencies []}}
:env-vars [".env-vars"]
:repl-options {:init-ns etlp.core})