-
Notifications
You must be signed in to change notification settings - Fork 58
/
project.clj
15 lines (15 loc) · 869 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(defproject clucy "0.4.0"
:description "A Clojure interface to the Lucene search engine"
:url "http://github/weavejester/clucy"
:dependencies [[org.clojure/clojure "1.4.0"]
[org.apache.lucene/lucene-core "4.2.0"]
[org.apache.lucene/lucene-queryparser "4.2.0"]
[org.apache.lucene/lucene-analyzers-common "4.2.0"]
[org.apache.lucene/lucene-highlighter "4.2.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"]]}}
:codox {:src-dir-uri "http://github/weavejester/clucy/blob/master"
:src-linenum-anchor-prefix "L"})