-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
17 lines (17 loc) · 732 Bytes
/
project.clj
File metadata and controls
17 lines (17 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject arl_docker "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/tools.namespace "0.2.11"]
[bultitude "0.2.8"] ;; same idea as tools.namespace.find
[com.taoensso/timbre "4.3.1"]
[aysylu/loom "1.0.0"]
[me.raynes/fs "1.4.6"]
[manifold "0.1.6"]
[aleph "0.4.3"]
[byte-streams "0.2.3"]]
:main ^:skip-aot arl-docker.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})