-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
29 lines (29 loc) · 1.2 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
(defproject rdfcat "0.1.0-SNAPSHOT"
:description "Prototype på katalogsøk basert på deichmans rdf-store"
:url "http://github.com/boutros/rdfcat"
:dependencies [[org.clojure/clojure "1.5.1"]
[compojure "1.1.5"]
[enlive "1.1.1"]
[clj-http "0.7.3"]
[boutros/elastisch "1.2.0-beta4-SNAPSHOT"]
[matsu "0.1.3-SNAPSHOT"]
[com.taoensso/timbre "2.1.2"]
[domina "1.0.2-SNAPSHOT"]
[fogus/ring-edn "0.2.0-SNAPSHOT"]
;[cljs-ajax "0.1.4"]
]
:plugins [[lein-cljsbuild "0.3.0"]
[lein-ring "0.8.3"]]
;:hooks [leiningen.cljsbuild]
:source-paths ["src/clj"]
:cljsbuild {
:builds {
:main {
:source-paths ["src/cljs"]
:compiler {:output-to "resources/public/js/cljs.js"
:optimizations :whitespace
:pretty-print true}
:jar true}}}
:main rdfcat.index
:ring {:handler rdfcat.server/app}
:profiles {:dev {:dependencies [[ring-mock "0.1.5"]]}})