-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.clj
39 lines (35 loc) · 1.46 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
(ns build
(:require [clojure.tools.build.api :as b]
[deps-deploy.deps-deploy :as dd]))
(def lib 'org.clojars.stiwar/datest)
(def version "1.1.1")
(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 [_]
(clean _)
(b/write-pom {:class-dir class-dir
:lib lib
:version version
:basis basis
:src-dirs ["src"]
:scm {:url "https://github.com/amokfa/datest"
:tag (str "v" version)
:connection "scm:git:git://github.com/amokfa/datest.git"
:developerConnection "scm:git:ssh://[email protected]/amokfa/datest.git"}
:pom-data [[:licenses
[:license
[:name "MIT License"]
[:url "http://www.opensource.org/licenses/mit-license.php"]
[:distribution "repo"]]]]})
(b/copy-dir {:src-dirs ["src" "resources"]
:target-dir class-dir})
(b/jar {:class-dir class-dir
:jar-file jar-file}))
(defn deploy [_]
(jar _)
(dd/deploy {:installer :remote
:artifact jar-file
:pom-file (b/pom-path {:lib lib :class-dir class-dir})}))