-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.clj
68 lines (59 loc) · 1.96 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
(ns build
(:require
[clojure.java.shell :refer [sh]]
[clojure.string :as str]
[clojure.tools.build.api :as b]
[org.corfield.build :as bb]))
(defn semver-sort [semver-str] (->> (str/split semver-str #"\.") (mapv parse-long)))
(defn git-tag
[]
(let [tag (->> (sh "git" "tag") :out str/split-lines (sort-by semver-sort) last)]
(if (seq tag) tag "0.1-SNAPSHOT")))
(def lib 'io.github.escherize/huff)
(def main 'huff.core)
(def version (git-tag))
(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 "pom.xml"})
(b/delete {:path "target"}))
(def pom-template
[[:description "A library for cozy and delightful html generation."]
[:url "https://github.com/escherize/huff/"]
[:licenses
[:license
[:name "Eclipse Public License"]
[:url "http://www.eclipse.org/legal/epl-v10.html"]]]
[:developers
[:developer
[:name "Bryan Maass"]]]])
(defn jar
[_]
(println "\nWriting pom.xml...")
(b/write-pom {:basis basis
:class-dir class-dir
:target "target"
:lib lib
:version version
:scm {:url "https://github.com/escherize/huff"
:connection "scm:git:git://github.com/escherize/huff.git"
:developerConnection "scm:git:ssh://git@github.com/escherize/huff.git"
:tag (git-tag)}
:src-dirs ["src"]
:resource-dirs ["resources"]
:pom-data pom-template})
(println "\nCopying source...")
(b/copy-dir {:src-dirs ["src" "resources"]
:target-dir class-dir})
(printf "\nBuilding %s...\n" jar-file)
(b/jar {:class-dir class-dir :jar-file jar-file}))
(defn deploy
"Deploy the JAR to Clojars."
[{:as opts}]
(-> opts
(assoc :lib lib
:version version
:main main)
(bb/deploy)))