forked from thheller/shadow-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
26 lines (20 loc) · 871 Bytes
/
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
(defproject thheller/shadow-build "1.0.201"
:description "cljs compiler"
:url "https://github.com/thheller/shadow-build"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.228"]
[aysylu/loom "0.5.0"]
[com.cognitect/transit-clj "0.8.283"]]
:source-paths ["src/clj"
"src/cljs"]
:java-source-paths ["src/java"]
:profiles {:dev {:source-paths ["src/dev"]
:dependencies [[org.clojure/tools.namespace "0.2.11"]
[junit/junit "4.12"]
]}}
:plugins [[codox "0.8.13"]]
:codox {:sources ["src/clj"]
:exclude [shadow.cljs.util]
:output-dir "doc/codox"})