forked from hexlet-codebattle/battle_asserts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
20 lines (20 loc) · 902 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject battle_asserts "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"}
:min-lein-version "2.3.0"
:plugins [[lein-kibit "0.0.8"]]
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/tools.namespace "0.2.4"]
[me.raynes/fs "1.4.4"]
[circleci/clj-yaml "0.5.2"]
[clj-stacktrace "0.2.7"]]
:injections [(let [orig (ns-resolve (doto 'clojure.stacktrace require)
'print-cause-trace)
new (ns-resolve (doto 'clj-stacktrace.repl require)
'pst)]
(alter-var-root orig (constantly (deref new))))]
:source-paths ["src"]
:eval-in :nrepl
:main battle-asserts.core)