-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathproject.clj
24 lines (24 loc) · 1.09 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
23
24
(defproject clj-biosequence "0.5.2"
:description "Library for the manipulation of biological sequences."
:url ""
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:repositories [["biojava" "http://www.biojava.org/download/maven/"]]
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/data.xml "0.0.8"]
[org.clojure/data.zip "0.1.1"]
[org.apache.commons/commons-compress "1.10"]
[com.taoensso/nippy "2.10.0"]
[com.velisco/tagged "0.4.0"]
[clj-http "2.0.1"]
[iota "1.1.3"]
[clj-time "0.11.0"]
[fs "1.3.3"]
[org.clojars.hozumi/clj-commons-exec "1.1.0"]
[org.clojure/tools.nrepl "0.2.12"]]
:resource-paths ["shared" "resources"]
:plugins [[codox "0.8.10"]]
:codox {:src-dir-uri "https://github.com/s312569/clj-biosequence/blob/master/"
:src-linenum-anchor-prefix "L"}
:repl-options {:init (set! *print-length* 100)}
:jvm-opts ["-Xmx1000M"])