-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.clj
46 lines (39 loc) · 1.37 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
(ns build
(:require [clojure.tools.build.api :as b]
[clojure.string :as str]))
(def lib 'com.phronemophobic/whisper-clj)
(def version "1.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))
(def src-pom "./pom-template.xml")
(defn clean [_]
(b/delete {:path "target"}))
(defn jar [opts]
(b/write-pom {:class-dir class-dir
:src-pom src-pom
:lib lib
:pom-data
[[:licenses
[:license
[:name "The MIT License (MIT)"]
[:url "https://mit-license.org/"]]]]
: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)