forked from weavejester/clucy
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathproject.clj
16 lines (16 loc) · 898 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject zclucy "0.9.2"
:description "A Clojure interface to the Lucene search engine"
:url "http://github.com//yxzhang/clucy"
:dependencies [[org.clojure/clojure "1.4.0"]
[org.apache.lucene/lucene-core "4.4.0"]
[org.apache.lucene/lucene-queryparser "4.4.0"]
[org.apache.lucene/lucene-analyzers-common "4.4.0"]
[org.apache.lucene/lucene-highlighter "4.4.0"]]
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:profiles {:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.0"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0-master-SNAPSHOT"]]}}
:warn-on-reflection true
:codox {:src-dir-uri "http://github.com/yxzhang/clucy/blob/master"
:src-linenum-anchor-prefix "L"})