-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.clj
36 lines (32 loc) · 1.11 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
(ns build
(:require [clojure.tools.build.api :as b]
[clojure.string :as str]))
(def lib 'com.phronemophobic/viscous)
(def version "1.3.3")
(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"]})
(b/copy-dir {:src-dirs ["src" "resources"]
:target-dir class-dir})
(b/jar {:class-dir class-dir
:jar-file jar-file}))
(defn deploy [opts]
(jar opts)
(try ((requiring-resolve 'deps-deploy.deps-deploy/deploy)
(merge {:installer :remote
:artifact jar-file
:pom-file (b/pom-path {:lib lib :class-dir class-dir})}
opts))
(catch Exception e
(if-not (str/includes? (ex-message e) "redeploying non-snapshots is not allowed")
(throw e)
(println "This release was already deployed."))))
opts)