forked from bbalser/elsa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
70 lines (61 loc) · 1.89 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
66
67
68
69
70
defmodule Elsa.MixProject do
use Mix.Project
@version "2.0.0"
@github "https://github.com/UrbanOS-Public/elsa_kafka"
def project do
[
app: :elsa_kafka,
name: "Elsa Kafka",
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
homepage: @github,
docs: docs(),
elixirc_paths: elixirc_paths(Mix.env()),
test_paths: test_paths(Mix.env()),
dialyzer: [plt_file: {:no_warn, ".plt/#{System.version()}.plt"}]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:brod, "~> 3.16.5"},
{:patiently, "~> 0.2", only: [:dev, :test, :integration]},
{:divo, "~> 2.0", only: [:dev, :test, :integration], override: true},
{:divo_kafka, "~> 1.0", only: [:dev, :test, :integration]},
{:mock, "~> 0.3", only: [:dev, :test]},
{:checkov, "~> 1.0", only: [:test, :integration]},
{:ex_doc, "~> 0.29", only: [:dev]},
{:dialyxir, "~> 1.3", only: [:dev], runtime: false}
]
end
defp elixirc_paths(env) when env in [:test, :integration], do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp test_paths(:integration), do: ["test/integration"]
defp test_paths(_), do: ["test/unit"]
defp package do
[
maintainers: ["Smartcitiesdata"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => @github}
]
end
defp description do
"Elsa is a full-featured Kafka library written in Elixir and extending the :brod library with additional support from the :kafka_protocol Erlang libraries to provide capabilities not available in :brod."
end
defp docs do
[
source_ref: "v#{@version}",
source_url: @github,
extras: ["README.md"],
source_url_pattern: "#{@github}/blob/master/%{path}#L%{line}"
]
end
end