-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.boot
33 lines (29 loc) · 1.21 KB
/
build.boot
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
(set-env!
:resource-paths #{"src" "resources"}
:dependencies '[[boot/core "2.0.0-rc14" :scope "provided"]
[org.clojure/clojure "1.7.0-beta3" :scope "provided"]
[org.clojure/clojurescript "0.0-3269"]
[org.clojure/tools.namespace "0.2.10"]
[org.pegdown/pegdown "1.4.2"]
[leinjacker "0.4.2"]
[hiccup "1.0.5"]
[funcool/bootutils "0.1.0" :scope "test"]])
(require '[funcool.boot-codeina :refer :all]
'[funcool.bootutils :refer :all])
(def +version+
"0.1.0-SNAPSHOT")
(def +description+
"A tool for generating API documentation from Clojure")
(task-options!
pom {:project 'funcool/boot-codeina
:version +version+
:description +description+
:url "https://github.com/funcool/codeina"
:license {"Eclipse Public License" "http://www.eclipse.org/legal/epl-v10.html"}
:scm {:url "https://github.com/funcool/boot-codeina"}}
apidoc {:version +version+
:title "Boot-Codeina"
:sources #{"src"}
:src-uri "https://github.com/funcool/boot-codeina/tree/master/"
:src-uri-prefix "#L"
:description +description+})