This repository has been archived by the owner on Feb 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.clj
42 lines (40 loc) · 1.98 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
37
38
39
40
41
42
(use '[clojure.java.shell :only (sh)])
(require '[clojure.string :as string])
(defn git-ref
[]
(or (System/getenv "GIT_COMMIT")
(string/trim (:out (sh "git" "rev-parse" "HEAD")))
""))
(defproject org.cyverse/infosquito "2.12.0-SNAPSHOT"
:description "An ICAT database crawler used to index the contents of iRODS."
:url "https://github.com/cyverse-de/infosquito"
:license {:name "BSD"
:url "http://iplantcollaborative.org/sites/default/files/iPLANT-LICENSE.txt"}
:manifest {"Git-Ref" ~(git-ref)}
:uberjar-name "infosquito-standalone.jar"
:aot [infosquito.core]
:main infosquito.core
:dependencies [[org.clojure/clojure "1.8.0"]
[postgresql "9.1-901-1.jdbc4"]
[org.clojure/java.jdbc "0.3.5"]
[org.clojure/core.cache "0.6.3"]
[cheshire "5.5.0"
:exclusions [[com.fasterxml.jackson.dataformat/jackson-dataformat-cbor]
[com.fasterxml.jackson.dataformat/jackson-dataformat-smile]
[com.fasterxml.jackson.core/jackson-annotations]
[com.fasterxml.jackson.core/jackson-databind]
[com.fasterxml.jackson.core/jackson-core]]]
[clojurewerkz/elastisch "2.2.1"]
[com.novemberain/langohr "3.5.1"]
[slingshot "0.10.3"]
[me.raynes/fs "1.4.6"]
[org.cyverse/clojure-commons "2.8.0"]
[org.cyverse/common-cli "2.8.1"]
[org.cyverse/event-messages "0.0.1"]
[org.cyverse/service-logging "2.8.0"]]
:eastwood {:exclude-namespaces [:test-paths]
:linters [:wrong-arity :wrong-ns-form :wrong-pre-post :wrong-tag :misplaced-docstrings]}
:plugins [[jonase/eastwood "0.2.3"]
[test2junit "1.1.3"]]
:profiles {:dev {:resource-paths ["dev-resources"]}}
:jvm-opts ["-Dlogback.configurationFile=/etc/iplant/de/logging/infosquito-logging.xml"])