-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.clj
22 lines (22 loc) · 941 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject marathonclj "0.1.2-SNAPSHOT"
:description "Marathon Rest Client for Clojure "
:url "https://github.com/lorthos/marathonclj"
:dependencies [[org.clojure/clojure "1.8.0"]
[cheshire "5.3.1"]
[org.clojure/data.json "0.2.5"]
[clj-http "2.3.0" :exclusions [org.clojure/clojure]]
]
:min-lein-version "2.4.3"
;release
:scm {:name "git"
:url "https://github.com/lorthos/marathonclj"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:signing {:gpg-key "218C6198"}
;; This directive (and the {:creds :gpg} section) tells
;; Leiningen how to find your Clojars account credentials.
;; You set those up already, right?
:deploy-repositories [["clojars" {:creds :gpg}]]
:jvm-opts ["-Dsun.net.client.defaultConnectTimeout=1000"
"-Dsun.net.client.defaultReadTimeout=6000"]
)