forked from pallet/pallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profiles.clj
23 lines (23 loc) · 1.18 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
{: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]}
:doc {:dependencies [[com.palletops/pallet-codox "0.1.0-SNAPSHOT"]]
:codox {:writer codox-md.writer/write-docs
:output-dir "autodoc/api/0.8"
:src-dir-uri "https://github.com/pallet/pallet/blob/develop"
:src-linenum-anchor-prefix "L"}
:aliases {"marg" ["marg" "-d" "autodoc/marginalia/0.8/"]
"codox" ["doc"]
"doc" ["do" "codox," "marg"]}}
:release
{:plugins [[lein-set-version "0.2.1"]]
:set-version
{:updates [{:path "README.md" :no-snapshot true}]}}
:clojure-1.5.0 {:dependencies [[org.clojure/clojure "1.5.0-RC15"]]}}