This repository was archived by the owner on Feb 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
33 lines (32 loc) · 1.38 KB
/
project.clj
File metadata and controls
33 lines (32 loc) · 1.38 KB
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
(defproject lcmap-cli "0.5.0"
:description "LCMAP Devops Interface"
:url "https://github.com/usgs-eros/lcmap-cli"
:license {:name "Unlicense"
:url "http://unlicense.org/"}
:dependencies [[cheshire "5.8.1"]
[environ "1.1.0"]
[http-kit "2.2.0"]
[net.mikera/core.matrix "0.62.0"]
[net.mikera/vectorz-clj "0.48.0"]
[org.clojure/clojure "1.9.0"]
[org.clojure/core.async "0.4.490"]
[org.clojure/data.json "0.2.6"]
[org.clojure/math.combinatorics "0.1.5"]
[org.clojure/tools.cli "0.4.1"]
[environ "1.1.0"]]
:main ^:skip-aot lcmap-cli.core
:target-path "target/%s"
:repl-options {:init-ns user}
:plugins [[lein-environ "1.1.0"]]
:profiles {:uberjar {:aot :all}
:dev {:resource-paths ["dev"]
:dependencies [[org.clojure/tools.namespace "0.2.11"]
[http-kit.fake "0.2.1"]]
:plugins [[lein-binplus "0.6.4"]]}
:test {:resource-paths ["test" "test/resources"]
:dependencies [[http-kit.fake "0.2.1"]]
:env {:edn-file "test/resources/lcmap-cli-test.edn"}}}
:bin {:name "lcmap"
:bin-path "~/bin"
:bootclasspath false
:jvm-opts ["-server" "$JVM_OPTS" ]})