-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathproject.clj
More file actions
35 lines (29 loc) · 1.83 KB
/
project.clj
File metadata and controls
35 lines (29 loc) · 1.83 KB
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
(defproject de.active-group/active-clojure "0.46-SNAPSHOT"
:description "Active Clojure: Various Clojure utilities in use at Active Group"
:url "http://github.com/active-group/active-clojure"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.0" :scope "provided"]
[org.clojure/clojurescript "1.10.238" :scope "provided"]
[io.aviso/pretty "1.1.1"]
[org.clojure/core.match "1.0.0"]
[org.clojure/test.check "0.10.0-alpha4"]]
:generated-paths ["target"]
:profiles {:dev {:dependencies [[com.bhauman/figwheel-main "0.2.0"]
[com.bhauman/rebel-readline-cljs "0.1.4"]
[compojure "1.6.1"]]
:source-paths ["src" "dev"]
:clean-targets ^{:protect false} ["resources/public/js/compiled"
"resources/public/cljs-out"
:target-path]}
:codox {:dependencies [[codox-theme-rdash "0.1.2"]]}}
:aliases {"fig" ["trampoline" "with-profile" "+dev,+test" "run" "-m" "figwheel.main" "-b" "dev" "-r"]
"figtest" ["run" "-m" "figwheel.main" "-co" "test.cljs.edn" "-m" active.clojure.figwheel-test-runner]
"figtest-headless" ["run" "-m" "figwheel.main" "-fwo" "{:launch-js [\"run-chrome.sh\" :open-url]}" "-co" "test.cljs.edn" "-m" active.clojure.figwheel-test-runner]}
:plugins [[lein-codox "0.10.8"]]
:codox {:language :clojure
:metadata {:doc/format :markdown}
:themes [:rdash]
:src-uri "http://github.com/active-group/active-clojure/blob/main/"
:src-linenum-anchor-prefix "L"}
:global-vars {*warn-on-reflection* true})