diff --git a/doc/intro.md b/doc/intro.md index d283148..57e12c3 100644 --- a/doc/intro.md +++ b/doc/intro.md @@ -63,7 +63,6 @@ representation of the SVG. (binary-stl-file->svg "path/to/input-file.stl" "path-to-output-file.svg") As above, but, as a side effect, writes the SVG to the specified output file. -Works for smaller test files, as above. ### Merging exclusion maps and reserved area maps diff --git a/project.clj b/project.clj index 0ae73cc..72a0635 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject walkmap "0.1.0-SNAPSHOT" +(defproject journeyman-cc/walkmap "0.1.0-SNAPSHOT" :cloverage {:output "docs/cloverage"} :codox {:metadata {:doc "**TODO**: write docs" :doc/format :markdown} @@ -8,14 +8,26 @@ [org.clojure/math.numeric-tower "0.0.4"] [org.clojure/math.combinatorics "0.1.6"] [com.taoensso/timbre "4.10.0"] - [dali "0.7.4"] + [dali "0.7.4"] ;; not currently used because performance issues. [hiccup "1.0.5"] [me.raynes/fs "1.4.6"] [smee/binary "0.5.5"]] + :deploy-repositories [["releases" :clojars] + ["snapshots" :clojars]] :description "A Clojure library designed to assist in computing walkmaps for games." :license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0" :url "https://www.eclipse.org/legal/epl-2.0/"} :plugins [[lein-cloverage "1.1.1"] [lein-codox "0.10.7"]] + :release-tasks [["vcs" "assert-committed"] + ["change" "version" "leiningen.release/bump-version" "release"] + ["vcs" "commit"] + ["vcs" "tag" "v." "--no-sign"] + ["clean"] + ["codox"] + ["cloverage"] + ["uberjar"] + ["change" "version" "leiningen.release/bump-version"] + ["vcs" "commit"]] :repl-options {:init-ns walkmap.core} - :url "http://example.com/FIXME") + :url "https://simon-brooke.github.io/walkmap/")