-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathproject.clj
16 lines (16 loc) · 874 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject superstring "3.2.1"
:description "String manipulation library for clojure and clojurescript"
:url "http://github.com/expez/superstring"
:license {:name "Eclipse Public License 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:year 2024
:key "epl-1.0"}
:plugins [[codox "0.8.11"]]
:codox {:src-dir-uri "http://github.com/expez/superstring/blob/master/"
:src-linenum-anchor-prefix "L"}
:profiles {:dev {:dependencies [[org.clojure/test.check "1.1.1"]
[org.clojure/clojure "1.11.1"]
[org.clojure/clojurescript"1.11.132" ]
[cider/piggieback "0.5.3"]]
:repl-options {:init-ns superstring.core
:nrepl-middleware [cider.piggieback/wrap-cljs-repl]}}})