forked from lynaghk/vcf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
74 lines (61 loc) · 3.07 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
62
63
64
65
66
67
68
69
70
71
72
73
74
(defproject com.keminglabs/o8 "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.5.1"]
[org.clojure/tools.cli "0.2.1"]
[com.keminglabs/c2 "0.2.3-SNAPSHOT"
:exclusions [com.keminglabs/singult org.clojure/core.match]]
[com.keminglabs/singult "0.1.6"]
[com.keminglabs/chosen "0.1.7"]
[com.keminglabs/dubstep "0.1.2"
:exclusions [org.clojure/core.match]]
[org.clojure/core.match "0.2.0-alpha11"
:exclusions [org.clojure/core.logic org.clojure/clojure]]
[compojure "1.1.5"]
[ring/ring-core "1.2.0-beta2"]
[ring/ring-jetty-adapter "1.2.0-beta2"]
[com.cemerick/friend "0.1.5"]
[cheshire "4.0.1"]
[shoreleave/shoreleave-remote "0.3.0"]
[shoreleave/shoreleave-remote-ring "0.3.0"]
[lib-noir "0.5.0" :exclusions
[org.clojure/clojure ring compojure]]
[ring-anti-forgery "0.2.1" :exclusions [hiccup]]
[hiccup "1.0.3"]
[enlive "1.0.1" :exclusions [org.clojure/clojure]]
[clj-http "0.6.3"]
[org.clojure/data.zip "0.1.1"]
[org.webjars/jquery "1.9.1"]
[org.webjars/jquery-ui "1.10.2"]
[org.webjars/bootstrap "2.3.1"]
[org.webjars/chosen "0.9.12"]
[bcbio.variation "0.0.8-SNAPSHOT"]]
:jvm-opts ["-Dorg.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.StdErrLog"
"-Xms2g" "-Xmx4g"]
:main o8.main
:profiles {:dev {:dependencies [[midje "1.4.0"]
[clj-http "0.5.0"]]}
:cljs {:dependencies [[bcbio.variation "0.0.7-SNAPSHOT"
:exclusions [com.google.collections/google-collections
org.clojure/clojurescript]]]}}
:min-lein-version "2.0.0"
:source-paths ["src/clj" "src/cljs"]
:test-paths ["test/clj"]
:plugins [[lein-cljsbuild "0.3.0"]
[lein-ring "0.8.3"]]
:ring {:handler o8.server/app
:init o8.main/devel-set-config!}
:cljsbuild {:builds
[{:source-paths ["src/cljs/vcfvis"]
:compiler {:output-to "public/vcfvis.js"
;; :optimizations :advanced
;; :pretty-print false
:optimizations :whitespace
:pretty-print true
:externs ["externs/jquery.js"
"vendor/externs.js"]}}
{:source-paths ["src/cljs/o8"]
:compiler {:output-to "public/o8.js"
:optimizations :whitespace
:pretty-print true
:externs ["externs/jquery.js"]}}]})