-
Notifications
You must be signed in to change notification settings - Fork 8
/
project.clj
43 lines (40 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
37
38
39
40
41
42
43
(defproject io.mandoline/mandoline-dynamodb "0.1.11.1-SNAPSHOT"
:description "DynamoDB backend for Mandoline."
:license {:name "Apache License, version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"
:distribution :repo}
:min-lein-version "2.0.0"
:url
"https://github.com/TheClimateCorporation/mandoline-dynamodb"
:mailing-lists
[{:name "[email protected]"
:archive "https://groups.google.com/d/forum/mandoline-users"
:post "[email protected]"}
{:name "[email protected]"
:archive "https://groups.google.com/d/forum/mandoline-dev"
:post "[email protected]"}]
:checksum :warn
:dependencies
[[org.clojure/clojure "1.7.0"]
[org.slf4j/slf4j-log4j12 "1.7.12"]
[log4j "1.2.17"]
[org.clojure/tools.logging "0.3.1"]
[org.clojure/core.cache "0.6.4"]
[org.clojure/core.memoize "0.5.7"]
[joda-time/joda-time "2.8.1"]
[com.amazonaws/aws-java-sdk-core "1.10.37"]
[com.amazonaws/aws-java-sdk-dynamodb "1.10.37"]
[com.amazonaws/aws-java-sdk-sts "1.10.37"]
[com.taoensso/faraday "1.7.1"]
[io.mandoline/mandoline-core "0.1.11"]]
:exclusions [org.clojure/clojure]
:aliases {"docs" ["marg" "-d" "target"]
"package" ["do" "clean," "jar"]}
:plugins [[lein-ancient "0.6.7"]
[lein-cloverage "1.0.2"]
[lein-marginalia "0.7.1"]]
:test-selectors {:default :unit
:integration :integration
:local :local
:unit :unit
:all (constantly true)})