-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
21 lines (21 loc) · 972 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject com.mochify/hiroba "0.1.0-alpha2-SNAPSHOT"
:description "A minimalistic Clojure library for the Foursquare REST API"
:url "http://mochify.github.io/hiroba"
:license {:name "Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[cheshire "5.3.1"]
[http-kit "2.1.16"]
[clj-time "0.6.0"]
[environ "0.4.0"]
[http-kit.fake "0.2.1"]
[clj-oauth "1.4.1"]]
:min-lein-version "2.0.0"
:global-vars {*warn-on-reflection* true}
:plugins [[codox "0.6.6"]
[lein-environ "0.4.0"]]
:codox {:sources ["src"]
:output-dir "doc/api"
:src-dir-uri "http://github.com/mochify/hiroba/blob/master/"
:src-linenum-anchor-prefix "L"}
:profiles {:compile {:aot [#"mochify.*"]}})