forked from hiredman/elasticsearch-lang-clojure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
21 lines (20 loc) · 1.11 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject org.clojars.touch/elasticsearch-lang-clojure "0.3.0-SNAPSHOT"
:description "Clojure script engine for ElasticSearch."
:url "https://github.com/touch/elastic-lang-clojure"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/tools.logging "0.2.6"]]
:profiles {:dev {:dependencies [[com.spatial4j/spatial4j "0.3"]
[log4j/log4j "1.2.16"]]}
:provided {:dependencies [[org.elasticsearch/elasticsearch "1.7.3"]]}}
:aot #{com.thelastcitadel.es.engine
com.thelastcitadel.es.plugin}
:pom-plugins [[com.theoryinpractise/clojure-maven-plugin "1.8.1"
{:extensions "true"
:executions ([:execution
[:id "clojure-compile"]
[:phase "compile"]
[:configuration
[:sourceDirectories [:sourceDirectory "src"]]]
[:goals [:goal "compile"]]])}]])