/ project.clj
project.clj
 1  (defproject selmer "1.12.62"
 2    :description "Django style templates for Clojure"
 3    :url "https://github.com/yogthos/Selmer"
 4    :license {:name "Eclipse Public License"
 5              :url "http://www.eclipse.org/legal/epl-v10.html"}
 6    :dependencies [;; minimal clojure version
 7                   [org.clojure/clojure "1.9.0"]
 8                   ;; optional dependencies
 9                   [json-html "0.4.7" :scope "provided"]
10                   [cheshire "5.11.0" :scope "provided"]]
11  
12    :aot [selmer.node]
13    :javac-options ["-target" "1.6"]
14  
15    :test-selectors {:default (complement :benchmark)
16                     :benchmark :benchmark
17                     :all (constantly true)}
18    :profiles {:dev {:global-vars {*warn-on-reflection* true}
19                     :repl-options {:port 10123}
20                     :source-paths ["src" "dev"]
21                     :plugins [[lein-marginalia "0.9.0"]]
22                     :dependencies [[environ "1.2.0"]
23                                    [org.clojure/tools.namespace "1.3.0"]
24                                    [criterium "0.4.6"]]}
25               :test {:dependencies [[criterium "0.4.6"]]}})