forked from inclojure-org/clojure-by-example
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.clj
More file actions
13 lines (13 loc) · 690 Bytes
/
project.clj
File metadata and controls
13 lines (13 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
(defproject clojure_by_example "0.1.0-SNAPSHOT"
:description "A workshop to introduce Clojure, to programmers new to Clojure."
:url "https://github.com/inclojure-org/clojure-by-example"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:plugins [[nightlight/lein-nightlight "RELEASE"]]
:dependencies [[org.clojure/clojure "1.9.0"]]
;; LightTable dependencies
;; https://github.com/LightTable/Clojure/#connect-to-remote-nrepl
:profiles {:dev {:dependencies [[lein-light-nrepl "0.3.3"]
[enlive "1.1.6"]
[cheshire "5.8.0"]
[criterium "0.4.4"]]}})