-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
18 lines (15 loc) · 988 Bytes
/
project.clj
File metadata and controls
18 lines (15 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject tracebackfilter "0.1.0-SNAPSHOT"
:description "extract multi-line log information and send to external"
:url "http://example.com/FIXME"
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/tools.logging "0.3.1"] ;; logging
[org.clojure/tools.cli "0.3.5"] ;; arg parsing
[amazonica "0.3.76" :exclusions [com.amaonaws/aws-java-sdk
com.amazonaws/amazon-kinesis-client]] ;; talk to aws, exclude everything
[com.amazonaws/aws-java-sdk-core "1.10.49"] ;; include aws core
[com.amazonaws/aws-java-sdk-sns "1.10.49"] ;; include sns
[clj-time "0.13.0"]] ;; timestamps
:target-path "target/%s"
:main ^:skip-aot tracebackfilter.core
:profiles {:uberjar {:aot :all
:jvm-opts ["-Xms4g" "-Xmx4g" "-server"]}})