Skip to content

Commit

Permalink
Fix uberjar build
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Dec 2, 2021
1 parent d182a0f commit 1e2df99
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions bb.edn
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
(def version "0.0.1"))
:leave (print-public-task :leave)

clean {:doc "Cleans artifacts"
:task (fs/delete-tree "server/target")}

java1.8 {:doc "Asserts that we are using java 1.8"
:requires ([clojure.java.shell :refer [sh]]
[clojure.string :as str])
Expand Down
3 changes: 2 additions & 1 deletion server/build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@
:src-dirs ["src"]
:class-dir class-dir}))
(b/uber (merge opts {:class-dir class-dir
:basis basis})))
:basis basis
:main 'zen-lang.lsp-server.main})))

0 comments on commit 1e2df99

Please sign in to comment.