-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
61 lines (50 loc) · 2.57 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
(defproject com.keminglabs/vcf "0.0.1-SNAPSHOT"
:description "Genetic variant visualization and analysis tool"
:license {:name "MIT" :url "http://www.opensource.org/licenses/mit-license.html"}
:dependencies [[org.clojure/clojure "1.4.0"]
[org.clojure/tools.cli "0.2.1"]
[com.keminglabs/c2 "0.2.1"
:exclusions [com.keminglabs/singult]]
[com.keminglabs/singult "0.1.5-SNAPSHOT"]
[com.keminglabs/chosen "0.1.7-SNAPSHOT"]
[com.keminglabs/dubstep "0.1.2-SNAPSHOT"]
[compojure "1.1.3"]
[ring/ring-core "1.1.6"]
[ring/ring-jetty-adapter "1.1.6"]
[com.cemerick/friend "0.1.2"]
[cheshire "4.0.1"]
[shoreleave/shoreleave-remote "0.2.2"]
[com.cemerick/shoreleave-remote-ring "0.0.3-SNAPSHOT"]
[ring-anti-forgery "0.2.1" :exclusions [hiccup]]
[hiccup "1.0.1"]
[enlive "1.0.1" :exclusions [org.clojure/clojure]]
[bcbio.variation "0.0.6-SNAPSHOT"]]
:jvm-opts ["-Dorg.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.StdErrLog"
"-Xmx2g"]
:main vcfvis.main
:profiles {:dev {:dependencies [[midje "1.4.0"]
[clj-http "0.5.0"]]}
:cljs {:dependencies [[bcbio.variation "0.0.6-SNAPSHOT"
:exclusions [com.google.collections/google-collections
org.clojure/clojurescript]]]}}
:min-lein-version "2.0.0"
:source-paths ["src/clj" "src/cljs"]
:plugins [[lein-cljsbuild "0.2.7"]
[lein-ring "0.7.5"]]
:ring {:handler vcfvis.server/app
:init vcfvis.main/devel-set-config!}
:cljsbuild {:builds
[{:source-path "src/cljs/vcfvis"
:compiler {:output-to "public/vcf.js"
;; :optimizations :advanced
;; :pretty-print false
:optimizations :whitespace
:pretty-print true
:externs ["externs/jquery.js"
"vendor/externs.js"
"resources/closure-js/externs"]}}
{:source-path "src/cljs/aahru"
:compiler {:output-to "public/aahru.js"
:optimizations :whitespace
:pretty-print true
:externs ["externs/jquery.js"]}}]})