-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.clj
41 lines (36 loc) · 1.27 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
(ns build
(:refer-clojure :exclude [test])
(:require [clojure.tools.build.api :as b]
[deps-deploy.deps-deploy :as dd]))
;; MAJOR.MINOR.COMMIT versioning
(def lib 'com.github.perrygeo/postgres-extras-clj)
(def version (format "0.1.%s" (b/git-count-revs nil)))
(def class-dir "target/classes")
(defn- jar-opts [opts]
(assoc opts
:lib lib :version version
:jar-file (format "target/%s-%s.jar" lib version)
:scm {:tag (str "v" version)}
:basis (b/create-basis {})
:class-dir class-dir
:target "target"
:src-dirs ["src"]))
(defn jar "Build the JAR." [opts]
(b/delete {:path "target"})
(let [opts (jar-opts opts)]
(println "Writing pom.xml...")
(b/write-pom opts)
(println "Copying source...")
(b/copy-dir {:src-dirs ["resources" "src"] :target-dir class-dir})
(println "Building JAR...")
(b/jar opts)
(println (str "✓ SUCCESS " (:jar-file opts))))
opts)
(defn deploy
"Deploy the JAR to clojars.org,
relies on `CLOJARS_USERNAME` and `CLOJARS_PASSWORD` env vars."
[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)