-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.clj
70 lines (62 loc) · 2.41 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
(ns build
"Project build config as code for clojure's tools.build"
(:require [build-config]
[clojure.tools.build.api :as b]
;[scicloj.clay.v2.api :as clay] -> dynamic require, due to https://github.com/scicloj/clay/issues/98
[clojure.edn :as edn]))
(def project (-> (edn/read-string (slurp "deps.edn"))
:aliases :neil :project))
(def lib (or (:name project) 'my/lib1))
;; use neil project set version 1.2.0 to update the version in deps.edn
(def version (or (:version project)
"1.2.0"))
(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 [_]
(b/write-pom {:class-dir class-dir
:lib lib
:version version
:basis basis
:src-dirs ["src"]
:pom-data
[[:description "An interface between Clojure and Wolfram Language (the language of Mathematica)"]
[:url "https://github.com/scicloj/wolframite"]
[:licenses
[:license
[:name "Mozilla Public License 2.0"]
[:url "https://mozilla.org/MPL/2.0/"]]]
[:scm
[:url "https://github.com/scicloj/wolframite"]
[:connection "scm:git:https://github.com/scicloj/wolframite.git"]
[:developerConnection "scm:git:ssh:[email protected]:scicloj/wolframite.git"]
[:tag (str "v" version)]]]})
(b/copy-dir {:src-dirs ["src" "resources"]
:target-dir class-dir})
(b/jar {:class-dir class-dir
:jar-file jar-file}))
(defn install [_]
(jar {})
(b/install {:basis basis
:lib lib
:version version
:jar-file jar-file
:class-dir class-dir}))
(defn deploy [opts]
(jar opts)
((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))
opts)
(defn build-site [opts]
(println "Going to build docs ...")
((requiring-resolve 'scicloj.clay.v2.api/make!)
(assoc build-config/config
:clean-up-target-dir true
:show false))
((requiring-resolve 'portal.runtime.jvm.launcher/stop))
opts)