Skip to content

Commit

Permalink
add license / deploy-repositories to project.clj
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Corfield <sean@corfield.org>
  • Loading branch information
seancorfield committed Feb 1, 2024
1 parent fdfb3a8 commit 97a65a2
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
(defproject marginalia "0.9.2"
:description "lightweight literate programming for clojure -- inspired by [docco](http://jashkenas.github.com/docco/)"
;; :main marginalia.main
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "same as Clojure"}
;; :main marginalia.main
:dependencies
[[org.clojure/clojure "1.11.1"]
[org.clojure/clojurescript "1.11.132"]
Expand All @@ -11,6 +15,11 @@

:resource-paths ["vendor"]

:deploy-repositories [["releases" {:url "https://clojars.org/repo"
:sign-releases false}]
["snapshots" {:url "https://clojars.org/repo"
:sign-releases false}]]

;; updated to match the latest mathjax website information:
:marginalia {:javascript ["https://polyfill.io/v3/polyfill.min.js?features=es6"
"https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"]}
Expand Down

0 comments on commit 97a65a2

Please sign in to comment.