-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.clj
35 lines (29 loc) · 1.02 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
(ns build
(:require [clojure.string :as str]
[clojure.tools.build.api :as b]))
(def lib 'evolduo)
(def version (format "0.1.%s" (b/git-count-revs nil)))
(def class-dir "target/classes")
(def config-example (str class-dir "/config.edn.example"))
(def basis (b/create-basis {:project "deps.edn"}))
(def uber-file (format "target/%s-%s-standalone.jar" (name lib) version))
(defn clean [_]
(b/delete {:path "target"}))
(defn config-string []
(str/replace (slurp config-example)
#":version \"dev\"" (str ":version \"" version "\"")))
(defn print-version [_]
(println version))
(defn uber [_]
(clean nil)
(b/copy-dir {:src-dirs ["src" "resources"]
:target-dir class-dir})
(b/write-file {:path (str class-dir "/config.edn")
:string (config-string)})
(b/compile-clj {:basis basis
:src-dirs ["src"]
:class-dir class-dir})
(b/uber {:class-dir class-dir
:uber-file uber-file
:basis basis
:main 'evolduo-app.system}))