-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
project.clj
25 lines (23 loc) · 1.09 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
(defproject selmer "1.12.61"
:description "Django style templates for Clojure"
:url "https://github.com/yogthos/Selmer"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [;; minimal clojure version
[org.clojure/clojure "1.9.0"]
;; optional dependencies
[json-html "0.4.7" :scope "provided"]
[cheshire "5.11.0" :scope "provided"]]
:aot [selmer.node]
:javac-options ["-target" "1.6"]
:test-selectors {:default (complement :benchmark)
:benchmark :benchmark
:all (constantly true)}
:profiles {:dev {:global-vars {*warn-on-reflection* true}
:repl-options {:port 10123}
:source-paths ["src" "dev"]
:plugins [[lein-marginalia "0.9.0"]]
:dependencies [[environ "1.2.0"]
[org.clojure/tools.namespace "1.3.0"]
[criterium "0.4.6"]]}
:test {:dependencies [[criterium "0.4.6"]]}})