-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
32 lines (27 loc) · 1.53 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
(defproject org.vlacs/oarlock "0.1.0-SNAPSHOT"
:description "Oarlock - where the work happens."
:url "https://github.com/vlacs/oarlock"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/tools.cli "0.2.4"]
^{:voom {:repo "https://github.com/vlacs/hatch" :branch "dev"}}
[org.vlacs/hatch "0.2.3-20140721_152704-g587007c"]
^{:voom {:repo "https://github.com/vlacs/helmsman"}}
[org.vlacs/helmsman "0.2.6-20140619_005947-gb4bb7d4"]
^{:voom {:repo "https://github.com/vlacs/timber"}}
[org.vlacs/timber "0.1.7-20140625_192643-gf77b7f9"]
[bouncer "0.3.1-beta1"]
^{:voom {:repo "https://github.com/vlacs/datomic-schematode" :branch "dev"}}
[datomic-schematode "0.1.3-RC1-20140624_195331-g210f6fa"]
[com.datomic/datomic-free "0.9.4707" :exclusions [commons-codec]]
[liberator "0.10.0" :exclusions [hiccup]]
[prismatic/schema "0.2.2"]]
:resource-paths ["resources"]
:pedantic? :warn ; :abort
:plugins [[lein-cloverage "1.0.2"]]
:profiles {:dev {:source-paths ["dev"]
:dependencies [[org.clojure/tools.namespace "0.2.4"]
[ring "1.2.2"]]}}
:repl-options {:init-ns user
:welcome (println "Anchors aweigh, and push the boat out. Please no panic stations.")})