-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
22 lines (18 loc) · 1.08 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject org.soulspace.clj/cmp.markdown "0.4.2-SNAPSHOT"
:description "The cmp.markdown library contains functions to generate markdown documents from Clojure"
:url "https://github.com/lsolbach/CljComponents"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
; use deps.edn dependencies
;:plugins [[lein-tools-deps "0.4.5"]]
;:middleware [lein-tools-deps.plugin/resolve-dependencies-with-deps-edn]
;:lein-tools-deps/config {:config-files [:install :user :project]}
:dependencies [[org.clojure/clojure "1.11.1"]]
:profiles {:dev {:dependencies [[djblue/portal "0.41.0"]
[criterium/criterium "0.4.6"]
[com.clojure-goes-fast/clj-java-decompiler "0.3.4"]
[expound/expound "0.9.0"]]
:global-vars {*warn-on-reflection* true}}}
; :test-paths ["test"]
:scm {:name "git" :url "https://github.com/soulspace-org/cmp.markdown"}
:deploy-repositories [["clojars" {:sign-releases false :url "https://clojars.org/repo"}]])