-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
42 lines (33 loc) · 1.61 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
(defproject com.beardandcode/forms "0.1.5"
:description "A library to generate and validate HTML forms based on JSON Schema"
:url "https://github.com/beardandcode/forms"
:license {:name "MIT"
:url "http://opensource.org/licenses/MIT"}
:min-lein-version "2.0.0"
:plugins [[lein-ancient "0.6.7"]
[jonase/eastwood "0.2.1"]
[lein-bikeshed "0.2.0"]
[lein-kibit "0.1.2"]]
:dependencies [[org.clojure/clojure "1.7.0"]
[cheshire "5.5.0"]
[com.github.fge/json-schema-validator "2.2.6"]
[hiccup "1.0.5"]]
:source-paths ["src/clj"]
:test-paths ["test/clj"]
:java-source-paths ["src/java"]
:resource-paths ["src"]
:javac-options ["-target" "1.8" "-source" "1.8"]
:aliases {"checkall" ["do" ["check"] ["kibit"] ["eastwood"] ["bikeshed"]]}
:profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.10"]
[leiningen #=(leiningen.core.main/leiningen-version)]
[im.chit/vinyasa "0.3.4"]
[reloaded.repl "0.1.0"]
;; for tests
[hickory "0.5.4"]
;; for test webapp
[ch.qos.logback/logback-classic "1.1.3"]
[com.beardandcode/components "0.1.0"]
[ring/ring-anti-forgery "1.0.0"]
[compojure "1.4.0"]]
:source-paths ["dev"]
:resource-paths ["test"]}})