-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofiles.clj
26 lines (26 loc) · 1.32 KB
/
profiles.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
{:dev {:dependencies [[ch.qos.logback/logback-classic "1.0.9"]]
;; We would like to create aliases in the dev profile, but this
;; causes a stack overflow in lein 2.0.0
;; https://github.com/technomancy/leiningen/pull/993
;; :aliases {"marg" ["with-profile" "+doc"
;; "marg" "-d" "autodoc/marginalia/0.8/"]
;; "codox" ["with-profile" "+doc" "doc"]
;; "doc" ["do" "codox," "marg"]}
:checkout-deps-shares [:source-paths :test-paths :resource-paths
:compile-path]
:plugins [[codox/codox.leiningen "0.6.4"]
[lein-marginalia "0.7.1"]]}
:doc {:dependencies [[com.palletops/pallet-codox "0.1.0"]]
:codox {:writer codox-md.writer/write-docs
:output-dir "doc/0.8/api"
:src-dir-uri "https://github.com/pallet/pallet-repl/blob/develop"
:src-linenum-anchor-prefix "L"}
:aliases {"marg" ["marg" "-d" "doc/0.8/annotated"]
"codox" ["doc"]
"doc" ["do" "codox," "marg"]}}
:release
{:plugins [[lein-set-version "0.3.0"]]
:set-version
{:updates [{:path "README.md" :no-snapshot true}]}}
:no-checkouts {:checkout-shares ^:replace []} ; disable checkouts
:clojure-1.5.0 {:dependencies [[org.clojure/clojure "1.5.0"]]}}