forked from esl/ex_rabbit_pool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
57 lines (52 loc) · 1.33 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
defmodule ExRabbitPool.MixProject do
use Mix.Project
def project do
[
app: :ex_rabbit_pool,
version: "1.1.0",
elixir: "~> 1.10.3 or ~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls],
docs: docs(),
description: "RabbitMQ connection pool library",
package: package(),
source_url: "https://github.com/esl/ex_rabbit_pool"
]
end
defp docs do
[
main: "readme",
formatters: ["html"],
extras: [
"README.md": [title: "Overview"]
]
]
end
defp package() do
[
files: ~w(lib .formatter.exs mix.exs README.md LICENSE),
licenses: ["Apache 2"],
links: %{
"GitHub" => "https://github.com/esl/ex_rabbit_pool",
"Blog Post" =>
"https://www.erlang-solutions.com/blog/ex_rabbit_pool-open-source-amqp-connection-pool.html"
}
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:amqp, "~> 3.0"},
{:poolboy, "~> 1.5"},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.18", only: :dev, runtime: false},
{:excoveralls, "~> 0.18", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false}
]
end
end