-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
24 lines (23 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
22
23
24
(defproject com.tiltontec/web-mx "2.0.2-SNAPSHOT"
:description "A Web Un-Framework, powered by Matrix(tm)"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:url "https://github.com/kennytilton/web-mx/"
:dependenmcies [[org.clojure/clojure "1.11.1"]
[org.clojure/clojurescript "1.11.60"]
[org.slf4j/slf4j-nop "1.7.30"]
[org.clojure/core.async "1.6.673"]
[com.taoensso/tufte "2.4.5"]
[com.tiltontec/matrix "5.0.1-SNAPSHOT"]
[com.tiltontec/mxxhr "2.0.0-SNAPSHOT"]]
:profiles
{:dev
{:dependencies [[org.clojure/clojurescript "1.11.60"]
[com.bhauman/figwheel-main "0.2.18"]]
:resource-paths ["target"]
:clean-targets ^{:protect false} ["target"]}}
:aliases {"fig" ["trampoline" "run" "-m" "figwheel.main"]}
:jvm-opts ^:replace ["-Xmx1g" "-server"]
:source-paths ["src" "target/classes"]
:clean-targets ["out" "release" :target-path]
:target-path "target")