forked from reborg/applenews-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
32 lines (32 loc) · 1.43 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
(defproject mol/applenews-api "1.1.2"
:description "Java/Clojure client for the Apple News REST api (https://developer.apple.com/go/?id=news-api-ref)"
:url "https://github.com/reborg/applenews-api"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "same as Clojure"}
:scm {:name "git"
:url "https://github.com/reborg/applenews-api"}
:pom-addition [:developers [:developer
[:name "reborg"]
[:email "[email protected]"]
[:url "http://reborg.net"]]]
:dependencies [[org.clojure/clojure "1.7.0"]
[clj-http "1.1.2"]
[environ "1.0.0"]
[bytebuffer "0.2.0"]
[cheshire "5.5.0"]
[org.imgscalr/imgscalr-lib "4.2"]
[clj-time "0.9.0"]]
:plugins [[lein-environ "1.0.0"]
[lein-javadoc "0.3.0"]]
:javadoc-opts {:package-names ["net.reborg"]}
:java-source-paths ["java"]
:repl-options {:init (do (require 'midje.repl) (midje.repl/autotest))
:timeout 250000}
:profiles {:uberjar {:source-paths ["src" "java"]
:aot :all}
:dev {:dependencies [[midje "1.7.0"]]}}
:jvm-opts ~(vec (map (fn [[p v]] (str "-D" (name p) "=" v))
{:java.awt.headless "true"}))
)