Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix cljdoc build #246

Open
wants to merge 1 commit into
base: epsilon
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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://git@github.com/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}}}