-
Notifications
You must be signed in to change notification settings - Fork 62
/
mix.exs
65 lines (58 loc) · 1.43 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
defmodule Kaffe.Mixfile do
use Mix.Project
@source_url "https://github.com/spreedly/kaffe"
@version "1.26.0"
def project do
[
app: :kaffe,
version: @version,
name: "Kaffe",
elixir: "~> 1.14",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
deps: deps(),
docs: docs(),
package: package()
]
end
def application do
[
applications: [:logger, :brod, :retry],
mod: {Kaffe, []}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_env), do: ["lib"]
defp deps do
[
{:brod, "~> 3.0"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:retry, "~> 0.15.0"}
]
end
defp package do
[
name: :kaffe,
description:
"An opinionated Elixir wrapper around brod, the Erlang Kafka client, " <>
"that supports encrypted connections to Heroku Kafka out of the box.",
licenses: ["MIT"],
maintainers: ["Kevin Lewis", "David Santoso", "Ryan Daigle", "Spreedly", "Joe Peck", "Brittany Hayes", "Anthony Walker"],
links: %{
"GitHub" => @source_url
}
]
end
defp docs do
[
extras: [
"README.md": [title: "Overview"],
"LICENSE.md": [title: "License"]
],
main: "readme",
source_url: @source_url,
formatters: ["html"]
]
end
end