forked from altworx/kafka_gen_stage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
44 lines (40 loc) · 1.07 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
defmodule KafkaGenStage.MixProject do
use Mix.Project
def project do
[
app: :kafka_gen_stage,
version: "1.0.1",
elixir: "~> 1.7",
package: package(),
description: "Klarna's Brod kafka client wrapped into GenStage.",
start_permanent: Mix.env() == :prod,
deps: deps(),
source_url: "https://github.com/altworx/kafka_gen_stage",
docs: [
source_url: "https://github.com/altworx/kafka_gen_stage"
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:brod, "~> 3.7.0"},
{:gen_stage, "~> 0.14.0"},
{:inch_ex, "~> 2.0", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.19", only: [:dev, :docs], runtime: false},
{:credo, "~> 0.10.0", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0.0-rc.3", only: [:dev], runtime: false}
]
end
defp package do
%{
licenses: ["Apache 2"],
maintainers: ["Matej Bosak"],
links: %{"GitHub" => "https://github.com/altworx/kafka_gen_stage"}
}
end
end