forked from kfyodor/kfk-avro-bridge
-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
17 lines (17 loc) · 936 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject org.akvo/kfk.avro-bridge "dev"
:description "Converting Clojure data structures to Avro-compatible Java classes back and forth."
:url "https://github.com/konukhov/kfk-avro-bridge"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.7.0"]
[org.apache.avro/avro "1.8.2"]
[cheshire "5.8.0"]
[camel-snake-kebab "0.4.0"]]
:profiles {:dev {:source-paths ["dev/src"]
:resource-paths ["dev/resources"]}
:set-version {:plugins [[lein-set-version "0.4.1"]]}}
:repositories [["releases" {:url "https://clojars.org/repo"
:sign-releases false
:username "akvo"
:password :env/clojars_password}]])