-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.clj
81 lines (75 loc) · 3.2 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
69
70
71
72
73
74
75
76
77
78
79
80
81
(ns build
(:require [clojure.tools.build.api :as b]
[deps-deploy.deps-deploy :as dd]))
(def lib 'com.eldrix/deprivare)
(def version (format "2.0.%s" (b/git-count-revs nil)))
(def class-dir "target/classes")
(def basis (b/create-basis {:project "deps.edn"}))
(def uber-basis (b/create-basis {:project "deps.edn", :aliases [:server]}))
(def jar-file (format "target/%s-%s.jar" (name lib) version))
(def uber-file (format "target/%s-server-%s.jar" (name lib) version))
(defn clean [_]
(b/delete {:path "target"}))
(defn jar
"Create a library jar file."
[_]
(clean nil)
(println "Building" lib version)
(b/write-pom {:class-dir class-dir
:lib lib
:version version
:basis basis
:src-dirs ["src"]
:scm {:url "https://github.com/wardle/deprivare"
:tag (str "v" version)
:connection "scm:git:git://github.com/wardle/deprivare.git"
:developerConnection "scm:git:ssh://git@github.com/wardle/deprivare.git"}
:pom-data [[:description "Deprivation indices in the United Kingdom"]
[:developers
[:developer
[:id "wardle"] [:name "Mark Wardle"] [:email "mark@wardle.org"] [:url "https://wardle.org"]]]
[:organization [:name "Eldrix Ltd"]]
[:licenses
[:license
[:name "Eclipse Public License v2.0"]
[:url "https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html"]
[:distribution "repo"]]]]})
(b/copy-dir {:src-dirs ["src" "resources"]
:target-dir class-dir})
(b/jar {:class-dir class-dir
:jar-file jar-file}))
(defn install
"Install library to local maven repository."
[_]
(jar nil)
(println "Installing" lib version)
(b/install {:basis basis
:lib lib
:version version
:jar-file jar-file
:class-dir class-dir}))
(defn deploy
"Deploy library to clojars.
Environment variables CLOJARS_USERNAME and CLOJARS_PASSWORD must be set."
[_]
(jar nil)
(dd/deploy {:installer :remote
:artifact jar-file
:pom-file (b/pom-path {:lib lib
:class-dir class-dir})}))
(defn uber
[{:keys [out] :or {out uber-file}}]
(println "Building uberjar " out)
(clean nil)
(b/copy-dir {:src-dirs ["resources"] :target-dir class-dir})
(b/copy-file {:src "server/logback.xml" :target (str class-dir "/logback.xml")})
(b/compile-clj {:basis uber-basis
:src-dirs ["src" "server"]
:ns-compile ['com.eldrix.deprivare.server]
:compile-opts {:elide-meta [:doc :added]
:direct-linking true}
:class-dir class-dir})
(b/uber {:class-dir class-dir
:uber-file out
:basis uber-basis
:main 'com.eldrix.deprivare.server}))