-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
33 lines (33 loc) · 1.6 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
(defproject formidable "0.1.9"
:description "Web forms - rendering, parsing, and validating"
:url "https://github.com/teamwall/formidable"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[jkkramer/verily "0.6.0"]
[clj-time "0.8.0"]
[crate "0.2.5"]
[prismatic/dommy "1.0.0"]
[ring-anti-forgery "0.3.0"]]
:test-paths ["target/test-classes"]
:cljx {:builds [{:source-paths ["src"]
:output-path "target/classes"
:rules :clj}
{:source-paths ["src"]
:output-path "target/classes"
:rules :cljs}
{:source-paths ["test"]
:output-path "target/test-classes"
:rules :clj}
{:source-paths ["test"]
:output-path "target/test-classes"
:rules :cljs}]}
:prep-tasks [["cljx" "once"]]
:profiles {:dev {:dependencies [[com.cemerick/clojurescript.test "0.3.3"]
[org.clojure/clojurescript "0.0-2498"]
[com.cemerick/piggieback "0.1.3"]
[com.keminglabs/cljx "0.5.0"]]
:plugins [[com.keminglabs/cljx "0.5.0"]]
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl
cljx.repl-middleware/wrap-cljx]}
:prep-tasks [["cljx" "once"]]}})