-
Notifications
You must be signed in to change notification settings - Fork 7
/
project.clj
21 lines (21 loc) · 1.04 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject om-material-ui "0.1.0"
:description "A simple wrapper around react Material UI"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[prismatic/om-tools "0.3.6" :exclusions [org.clojure/clojure]]
[org.clojure/clojurescript "0.0-2511" :scope "provided"]
[org.om/om "0.8.0"]]
:source-paths ["target/generated/src/clj" "src"]
:resource-paths ["target/generated/src/cljs"]
:jar-exclusions [#"\.cljx|\.swp|\.swo|\.DS_Store"]
:prep-tasks [["cljx" "once"] "javac" "compile"]
:profiles {:dev {:plugins [[com.keminglabs/cljx "0.5.0"
:exclusions [org.clojure/clojure]]]}}
:cljx {:builds [{:source-paths ["src"]
:output-path "target/generated/src/clj"
:rules :clj}
{:source-paths ["src"]
:output-path "target/generated/src/cljs"
:rules :cljs}]})