-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
44 lines (38 loc) · 1.68 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
(defproject cloc "0.2.1-SNAPSHOT"
:description "Serve docs from your classpath to a local web server."
:url "http://github.com/jaley/cloc"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/java.classpath "0.2.0"]
[hiccup "1.0.4"]
[compojure "1.1.5"]
[ring/ring-core "1.2.0"]
[ring/ring-jetty-adapter "1.2.0"]
[fogus/ring-edn "0.2.0"]
[org.apache.lucene/lucene-core "4.4.0"]
[org.apache.lucene/lucene-analyzers-common "4.4.0"]
[org.apache.lucene/lucene-queryparser "4.4.0"]
[cloc/indexer "0.1.0-SNAPSHOT"]
[prismatic/dommy "0.1.1"]
[cljs-ajax "0.2.0"]]
:eval-in-leiningen true
:plugins [[lein-cljsbuild "0.3.2"]
[lein-ring "0.8.6"]]
:source-paths ["src/clj"]
:cljsbuild {:repl-listen-port 9000
:repl-launch-commands
{"firefox" ["firefox" "-jsconsole" "http://localhost:1337/debug"]}
:builds
{:dev
{:source-paths ["src/cljs"]
:jar true
:compiler {:output-to "resources/public/js/main-debug.js"
:optimizations :whitespace
:pretty-print true}}
:prod
{:source-paths ["src/cljs"]
:jar true
:compiler {:output-to "resources/public/js/main.js"
:optimizations :advanced
:pretty-print false}}}})