-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathproject.clj
36 lines (35 loc) · 1.59 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
30
31
32
33
34
35
36
;;
;; (C) Copyright IBM Corp. 2016 All Rights Reserved.
;;
(defproject kale "1.8.1"
:description "A command line tool for provisioning and configuring the Retrieve and Rank Service and the Document Conversion Service"
:url "https://github.com/IBM-Watson/kale"
:min-lein-version "2.5.0"
:license {:name "MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/data.codec "0.1.0"]
[cheshire "5.5.0"]
[clj-time "0.11.0"]
[http-kit "2.2.0"]
[slingshot "0.12.2"]
;; Not a direct dependency.
;; This is here to lock in a specific version.
[riddley "0.1.12"]]
:main ^:skip-aot kale.main
:target-path "target/%s"
:prep-tasks [["exec" "solr/package.clj"]
"compile"]
:profiles {:dev {:dependencies [[http-kit.fake "0.2.2"]]
:plugins [[jonase/eastwood "0.2.3"
:exclusions [org.clojure/clojure]]
[lein-bikeshed "0.3.0"
:exclusions [org.clojure/clojure]]
[lein-cloverage "1.0.6"
:exclusions [org.clojure/clojure]]
[lein-exec "0.3.6"
:exclusions [org.clojure/clojure]]
[lein-kibit "0.1.2"
:exclusions [org.clojure/clojure]]
[lein-shell "0.4.1"
:exclusions [org.clojure/clojure]]]}
:uberjar {:aot :all}})