-
Notifications
You must be signed in to change notification settings - Fork 5
/
project.clj
42 lines (40 loc) · 1.92 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/clockwork "3.0.1-SNAPSHOT"
:description "Scheduled jobs for the CyVerse Discovery Environment"
:url "https://github.com/cyverse-de/clockwork"
:license {:name "BSD"
:url "https://cyverse.org/license"}
:manifest {"Git-Ref" ~(git-ref)}
:uberjar-name "clockwork-standalone.jar"
:dependencies [[org.clojure/clojure "1.11.3"]
[cheshire "5.13.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]]]
[clj-time "0.15.2"]
[clojurewerkz/quartzite "2.2.0"
:exclusions [[c3p0] [org.slf4j/slf4j-api]]]
[com.mchange/c3p0 "0.10.1"]
[com.novemberain/langohr "5.4.0" :exclusions [org.slf4j/slf4j-api]]
[org.cyverse/clojure-commons "3.0.8"]
[org.cyverse/common-cli "2.8.2"]
[org.cyverse/service-logging "2.8.4"]
[me.raynes/fs "1.4.6"]
[slingshot "0.12.2"]]
:profiles {:dev {:resource-paths ["resources/test"]}
:test {:resource-paths ["resources/test"]}
:uberjar {:aot :all}}
:main ^:skip-aot clockwork.core
:plugins [[jonase/eastwood "1.4.2"]
[lein-ancient "0.7.0"]
[test2junit "1.4.4"]]
:uberjar-exclusions [#"BCKEY.SF"]
:jvm-opts ["-Dlogback.configurationFile=/etc/iplant/de/logging/clockwork-logging.xml"])