forked from orchard-labs/morph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
34 lines (26 loc) · 1.31 KB
/
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
29
30
31
32
33
34
(defproject ai.motiva/morph "1.4.0-SNAPSHOT"
:description "A small collection of useful transformations"
:url "http://github.com/Motiva-AI/morph"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[camel-snake-kebab "0.4.2"]
[com.rpl/specter "1.1.3"]]
:repl-options {:init-ns user
:color false}
:eftest {:multithread? false
:capture-output? true
:report eftest.report.progress/report}
:profiles {:dev {:source-paths ["src"]
:test-paths ["test"]
:dependencies [[org.clojure/clojure "1.10.3"]
[circleci/bond "0.5.0"]
[eftest "0.5.9"]
[org.clojure/test.check "1.1.0"]
[com.gfredericks/test.chuck "0.2.11"]]
:plugins [[lein-eftest "0.5.0"]]
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]}}
:repositories [["releases" {:url "https://clojars.org/repo"
:username "motiva-ai"
:password :env
:sign-releases false}]]
:deploy-repositories [["releases" :clojars]])