forked from yetibot/yetibot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
103 lines (88 loc) · 3.77 KB
/
Copy pathproject.clj
File metadata and controls
103 lines (88 loc) · 3.77 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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
(defproject yetibot "0.5.7-SNAPSHOT"
:description "A command line in your chat, where chat ∈ {irc,slack}."
:url "https://github.com/yetibot/yetibot"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:deploy-repositories [["releases" :clojars]]
:jvm-opts ["-Djava.security.policy=.java.policy"]
:profiles {;; optionally override this profile in profiles.clj to be merged
;; into dev profile
:profiles/dev {}
:dev [:profiles/dev
{:source-paths ["dev"]
:exclusions [org.clojure/tools.trace]
:plugins [[lein-midje "3.2.1"]]
:dependencies [[org.clojure/tools.trace "0.7.9"]
[midje "1.9.4"]]}]
:low-mem {:jvm-opts ^:replace ["-Xmx1g" "-server"]}
:uberjar {:uberjar-name "yetibot.jar"
:jvm-opts ["-server"]
:aot :all}
:test {:dependencies []}}
:resource-paths ["resources"]
:repl-options {:init-ns yetibot.core.repl
:timeout 120000
:prompt (fn [ns] (str "\u001B[35m[\u001B[34m" ns
"\u001B[35m] \u001B[37mλ:\u001B[m "))
:welcome
(do
(println)
(println
(str
"\u001B[37m"
" Welcome to the Yetibot dev REPL!"
\newline
" Use \u001B[35m(\u001B[34mhelp\u001B[35m) "
"\u001B[37mto see available commands."
\newline
\newline
"\u001B[35m λλλ"
"\u001B[m"))
(println))}
:dependencies [[org.clojure/clojure "1.10.0"]
[yetibot.core "0.5.7"]
; apis
[twitter-api "1.8.0"]
[clj-aws-s3 "0.3.10" :exclusions [joda-time]]
[com.google.cloud/google-cloud-storage "1.57.0"]
[pager-duty-api "2.0"]
; scraping
[org.jsoup/jsoup "1.11.3"]
; utils
[org.flatland/useful "0.11.6"]
; << string interpolation macro
[org.clojure/core.incubator "0.1.4"]
; graphql
[district0x/graphql-query "1.0.5"]
; polling
[robert/bruce "0.8.0"]
[org.clojure/data.csv "0.1.4"]
; emojis
[com.vdurmont/emoji-java "4.0.0"]
; repls
[clojail "1.0.6"
;; clojail hasn't been updated in a long time, so exclude its
;; deps
:exclusions [org.clojure/clojure
org.flatland/useful
;; Note: excluding bultitude disables clojail's
;; `blanket` feature
bultitude
]]
[bultitude "0.2.8"]
;encoding
[org.clojure/data.codec "0.1.1"]
;sse
[io.nervous/kvlt "0.1.4"]
;; overwrite kvlt's outdated version of aleph
[aleph "0.4.6"]]
:plugins [[lein-exec "0.3.7"]
[lein-environ "1.1.0"]
[lein-cloverage "1.0.13"]
[lein-ring "0.12.4"]
[io.sarnowski/lein-docker "1.1.0"]]
:aliases { "version" ["exec" "-ep" "(use 'yetibot.core.version)(print version)"]
"test" ["midje"]}
;; :pedantic :ignore
:docker {:image-name "yetibot/yetibot"}
:main yetibot.core.init)