-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.clj
60 lines (53 loc) · 1.81 KB
/
build.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
(ns build
"donut/error's build script. Builds on https://github.com/seancorfield/honeysql/blob/develop/build.clj
Run tests:
clojure -X:test
clojure -X:test:master
For more information, run:
clojure -A:deps -T:build help/doc"
(:require
[clojure.tools.build.api :as b]
[deps-deploy.deps-deploy :as dd])
(:refer-clojure :exclude [test]))
(def lib 'party.donut/error)
(def version (format "0.0.%s" (b/git-count-revs nil)))
(def class-dir "target/classes")
(def basis (b/create-basis {:project "deps.edn"}))
(defn- pom-template [version]
[[:description "for oopsies and whoopsiedoodles"]
[:url "https://github.com/donut-power/error"]
[:licenses
[:license
[:name "MIT"]
[:url "https://opensource.org/license/mit/"]]]
[:developers
[:developer
[:name "Daniel Higginbotham"]]]
[:scm
[:url "https://github.com/donut-power/error"]
[:connection "scm:git:https://github.com/donut-power/error.git"]
[:developerConnection "scm:git:ssh:git@github.com:donut-power/error.git"]
[:tag (str "v" version)]]])
(defn- jar-opts [opts]
(assoc opts
:lib lib
:version version
:jar-file (format "target/%s-%s.jar" lib version)
:basis basis
:class-dir class-dir
:target "target"
:src-dirs ["src" "resources"]
:pom-data (pom-template version)))
(defn jar "build a jar"
[opts]
(let [opts (jar-opts opts)]
(b/delete {:path "target"})
(b/write-pom opts)
(b/copy-dir {:src-dirs ["src" "resources"]
:target-dir class-dir})
(b/jar opts)))
(defn deploy "Deploy the JAR to Clojars." [opts]
(let [{:keys [jar-file] :as opts} (jar-opts opts)]
(dd/deploy {:installer :remote :artifact (b/resolve-path jar-file)
:pom-file (b/pom-path (select-keys opts [:lib :class-dir]))}))
opts)