-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.clj
33 lines (29 loc) · 1.12 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
(ns build
(:require
[clojure.tools.build.api :as b]
[deps-deploy.deps-deploy :as dd]))
(def lib 'capital.vane/clj-money)
(def version "0.0.2")
(def class-dir "target/classes")
(def basis (b/create-basis {:project "deps.edn"}))
(def jar-file (format "target/%s-%s.jar" (name lib) version))
(defn clean [_]
(b/delete {:path "target"}))
(defn jar [_]
(b/write-pom {:class-dir class-dir
:lib lib
:version version
:basis basis
:src-dirs ["src"]
:scm {:connection "scm:git:https://github.com/vane-tech/clj-money.git"
:developerConnection "scm:git:git@github.com:vane-tech/clj-money.git"
:url "https://github.com/vane-tech/clj-money"
:tag (b/git-process {:git-args "rev-parse HEAD"})}})
(b/copy-dir {:src-dirs ["src" "resources"]
:target-dir class-dir})
(b/jar {:class-dir class-dir
:jar-file jar-file}))
(defn deploy [_]
(dd/deploy {:installer :remote
:artifact jar-file
:pom-file (b/pom-path {:lib lib :class-dir class-dir})}))