-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
executable file
·65 lines (40 loc) · 1.79 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
(defproject bobtailbot "0.1.0-SNAPSHOT"
:description "A simple REPL chatbot written in Clojure"
:url "https://github.com/martinodb/bobtailbot"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:main bobtailbot.core
;:aot [bobtailbot.core]
:dependencies [
[org.clojure/clojure "1.10.1"]
[org.clojure/tools.cli "1.0.194"]
[com.outpace/config "0.13.2"]
[com.cerner/clara-rules "0.20.0"]
[instaparse "1.4.10"]
[org.clojure/core.async "1.0.567"]
[com.gearswithingears/async-sockets "0.1.0"]
;; https://github.com/Raynes/fs
;; Tools to manipulate files and dirs
[me.raynes/fs "1.4.6"]
;;
[org.clojars.martinodb/zinc "1.0.0-SNAPSHOT"] ; clojars version
[com.taoensso/timbre "4.10.0"] ; logging.
]
:profiles
{:dev {:source-paths ["dev" "src" "test"]
:dependencies [ ;[org.clojure/tools.namespace "0.2.10"]
[org.clojure/tools.namespace "1.0.0"]
]
:plugins [ [lein-ancient "0.6.15"] ] }
:uberjar {:aot :all}
}
:aliases {"config" ["run" "-m" "outpace.config.generate"]}
:plugins [
]
:repl-options {
:print clojure.core/println
;:print clojure.pprint/pprint
:timeout 250000
}
; :repositories [ ["local" {:url ~(str (.toURI (java.io.File. "local-m2"))) :checksum :warn } ] ]
)