-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
74 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
cljs-test-runner-out | ||
test/scratch.clj | ||
test/borkdude/scratch.clj | ||
target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
(ns build | ||
(:require [clojure.tools.build.api :as b] | ||
[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 uber-file (format "target/%s-%s-standalone.jar" (name lib) version)) | ||
(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 | ||
[[:licenses | ||
[:license | ||
[:name "MIT License"] | ||
[:url "https://opensource.org/license/mit/"]]]]}) | ||
(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 uber [_] | ||
(clean nil) | ||
(b/copy-dir {:src-dirs ["src" "resources"] | ||
:target-dir class-dir}) | ||
(b/compile-clj {:basis basis | ||
:src-dirs ["src"] | ||
:class-dir class-dir}) | ||
(b/uber {:class-dir class-dir | ||
:uber-file uber-file | ||
:basis basis})) | ||
|
||
(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) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters