Skip to content

Commit

Permalink
Fix cljdoc build
Browse files Browse the repository at this point in the history
  • Loading branch information
jlesquembre committed Sep 8, 2023
1 parent 74de6b1 commit 63b9b76
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Meander is a Clojure/ClojureScript library that empowers you to write transparen
The latest version of the library can be found at the following link.

[![Clojars Project](https://img.shields.io/clojars/v/meander/epsilon.svg)](https://clojars.org/meander/epsilon)
[![cljdoc](https://cljdoc.org/badge/meander/epsilon)](https://cljdoc.org/d/meander/epsilon)
<a href="https://babashka.org" rel="nofollow"><img src="https://github.com/babashka/babashka/raw/master/logo/badge.svg" alt="bb compatible" style="max-width: 100%;"></a>

## What can Meander do?
Expand Down
9 changes: 8 additions & 1 deletion build/build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@
(def version (format "0.0.%s" (git-branch-commit-count)))
(def class-dir "target/classes")
(def jar-file (format "target/%s-%s.jar" (git-branch-name) version))
(def pom-scm {:connection "scm:git:git://github.com/noprompt/meander.git"
:developerConnection "scm:git:ssh://[email protected]/noprompt/meander.git"
:tag (format "v%s-%s" version (git-branch-name))
:url "https://github.com/noprompt/meander"})



(defn clean [_]
(b/delete {:path "target"}))
Expand All @@ -44,7 +50,8 @@
:lib lib
:version version
:basis basis
:src-dirs ["src"]})
:src-dirs ["src"]
:scm pom-scm})
(b/copy-dir {:src-dirs ["src"]
:target-dir class-dir})
(b/jar {:class-dir class-dir
Expand Down
2 changes: 1 addition & 1 deletion deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
olical/cljs-test-runner {:mvn/version "3.4.0"}}
:main-opts ["-m" "cljs-test-runner.main"]}
:build {:extra-paths ["src" "build"]
:extra-deps {io.github.clojure/tools.build {:git/tag "v0.1.9" :git/sha "6736c83"}
:extra-deps {io.github.clojure/tools.build {:git/tag "v0.9.5" :git/sha "24f2894"}
slipset/deps-deploy {:mvn/version "RELEASE"}}
:ns-default build}}}

0 comments on commit 63b9b76

Please sign in to comment.