forked from spreedly/kaffe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
47 lines (42 loc) · 1.12 KB
/
mix.exs
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
defmodule Kaffe.Mixfile do
use Mix.Project
def project do
[
app: :kaffe,
version: "1.15.0",
description:
"An opinionated Elixir wrapper around brod, the Erlang Kafka client, that supports encrypted connections to Heroku Kafka out of the box.",
name: "Kaffe",
source_url: "https://github.com/spreedly/kaffe",
package: package(),
elixir: "~> 1.3",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
deps: deps()
]
end
def application do
[
applications: [:logger],
mod: {Kaffe, []},
included_applications: [:brod]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_env), do: ["lib"]
defp deps do
[
{:brod, "~> 3.0"},
{:ex_doc, "~> 0.14", only: :dev, runtime: false}
]
end
defp package do
[
name: :kaffe,
licenses: ["MIT License"],
maintainers: ["Kevin Lewis", "David Santoso", "Ryan Daigle", "Spreedly"],
links: %{"GitHub" => "https://github.com/spreedly/kaffe"}
]
end
end