-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
52 lines (52 loc) · 2.37 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
(defproject molly "1.0.0"
:description "Knowledge discovery engine."
:url "https://github.com/rdrake/Molly"
:license {:name "Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:source-paths ["src/clj"]
:test-paths ["test/clj"]
:resource-paths ["resources"]
:dependencies
[[org.clojure/clojure "1.5.1"]
[org.apache.lucene/lucene-core "4.7.0"]
[org.apache.lucene/lucene-analyzers-common "4.7.0"]
[sqlitejdbc "0.5.6"]
[org.clojure/java.jdbc "0.2.3"]
[org.clojure/tools.cli "0.3.1"]
[org.clojure/data.json "0.2.4"]
[clojureql "1.0.4"]
[mavericklou/propertea "1.3.2"]
[compojure "1.1.6"]
[lib-noir "0.8.1"]
[criterium "0.4.3"]
[org.clojure/clojurescript "0.0-2173"]
[shoreleave/shoreleave-remote "0.3.0"]
[shoreleave/shoreleave-remote-ring "0.3.0"]
[prismatic/dommy "0.1.2"]
[net.drib/strokes "0.5.1"]]
:main molly.core
:aot [molly.core]
:jvm-opts ["-Xss1024m"]
:plugins [[lein-ring "0.8.7"]
[lein-cljsbuild "1.0.2"]
[lein-ancient "0.5.2"]
[lein-kibit "0.0.8"]]
:ring {:handler molly.server.remotes/app}
:profiles {:dev
{:dependencies
[[slamhound "1.5.1"]]
:aliases
{"slamhound" ["run" "-m" "slam.hound"]}}}
;:hooks [leiningen.cljsbuild]
:cljsbuild
{:builds
{:dev
{:source-paths ["src/brepl" "src/cljs"]
:compiler {:output-to "resources/public/static/js/app.js"
:optimizations :whitespace
:pretty-print true}}
:prod
{:source-paths ["src/cljs"]
:compiler {:output-to "resources/public/static/js/app.min.js"
:optimizations :advanced
:pretty-print false}}}})