forked from dakrone/eisago
-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
21 lines (21 loc) · 888 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject eisago "0.1.0-SNAPSHOT"
:description "Next-gen clojuredocs importer, API, and website."
:url "http://clojuredocs.org"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:resource-paths ["etc"]
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.5.1"]
[cheshire "4.0.4"]
[clj-http "0.5.7"]
[commons-codec "1.6"]
[laeggen "0.4"]
[org.apache.lucene/lucene-queryparser "4.0.0"]
[sonian/carica "1.0.0"]
[ring "1.2.0"]]
:profiles {:dev {:dependencies [[org.clojure/java.jdbc "0.2.3"]
[mysql/mysql-connector-java "5.1.6"]
[speclj "2.5.0"]]}}
:plugins [[speclj "2.5.0"]]
:test-paths ["spec"]
:main eisago.core)