-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
30 lines (30 loc) · 1.93 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
(defproject ymilky/franzy-common "0.0.2-SNAPSHOT"
:description "Common resources for Kafka libraries, such as schemas, utility functions, and configuration."
:url "https://github.com/ymilky/franzy-common"
:author "ymilky"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:repositories {"snapshots" {:url "https://clojars.org/repo"
:username :env
:password :env
:sign-releases false}
"releases" {:url "https://clojars.org/repo"
:username :env
:password :env
:sign-releases false}}
:dependencies [[org.clojure/clojure "1.8.0"]
[prismatic/schema "1.1.0"]]
:plugins [[lein-codox "0.9.4"]]
:codox {:metadata {:doc/format :markdown}
:doc-paths ["README.md"]
:output-path "doc/api"}
:profiles {:dev {:dependencies [[midje "1.7.0"]
[jarohen/nomad "0.7.2"]]
:plugins [[lein-midje "3.2"]
[lein-set-version "0.4.1"]
[lein-update-dependency "0.1.2"]
[lein-pprint "1.1.1"]]}
:reflection-check {:global-vars
{*warn-on-reflection* true
*assert* false
*unchecked-math* :warn-on-boxed}}})