forked from JonyEpsilon/gorilla-repl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
24 lines (23 loc) · 1.02 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
;;;; This file is part of gorilla-repl. Copyright (C) 2014-, Jony Hudson.
;;;;
;;;; gorilla-repl is licenced to you under the MIT licence. See the file LICENCE.txt for full details.
(defproject gorilla-repl "0.3.2-SNAPSHOT"
:description "A rich REPL for Clojure in the notebook style."
:url "https://github.com/JonyEpsilon/gorilla-repl"
:license {:name "MIT"}
:dependencies [[org.clojure/clojure "1.5.1"]
[http-kit "2.1.16"]
[ring/ring-json "0.2.0"]
[cheshire "5.0.2"]
[compojure "1.1.6"]
[org.slf4j/slf4j-api "1.7.5"]
[ch.qos.logback/logback-classic "1.0.13"]
[clojure-complete "0.2.3"]
[gorilla-renderable "1.0.0"]
[org.clojure/data.codec "0.1.0"]
[grimradical/clj-semver "0.2.0"]]
:main ^:skip-aot gorilla-repl.core
:target-path "target/%s"
:plugins [[lein-ring "0.8.7"]]
:ring {:handler gorilla-repl.core/app-routes}
:profiles {:uberjar {:aot :all}})