-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
23 lines (23 loc) · 1.05 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
(defproject clojure-fun "1.0"
:description "quick, learn!"
:url "https://github.com/xupit3r/clugle"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.11.1"]
[clj-http "3.12.3"]
[org.clj-commons/hickory "0.7.3"]
[cheshire "5.11.0"]
[compojure "1.7.0"]
[http-kit "2.6.0"]
[ring/ring-defaults "0.3.4"]
[babashka/fs "0.3.17"]
[environ "1.2.0"]
[com.novemberain/monger "3.5.0"]
[clj-time "0.15.2"]
[org.slf4j/slf4j-simple "2.0.7"]
[edu.stanford.nlp/stanford-corenlp "4.4.0"]
[edu.stanford.nlp/stanford-corenlp "4.4.0" :classifier "models"]
[edu.stanford.nlp/stanford-corenlp "4.4.0" :classifier "models-english"]]
:plugins [[lein-environ "1.2.0"]]
:repl-options {:init-ns clugle.core}
:main clugle.core)