-
Notifications
You must be signed in to change notification settings - Fork 28
/
mix.exs
46 lines (42 loc) · 1.14 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
defmodule BugsBunny.MixProject do
use Mix.Project
def project do
[
app: :ex_rabbit_pool,
version: "1.0.3",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls],
description: "RabbitMQ connection pool library",
package: package(),
source_url: "https://github.com/esl/ex_rabbit_pool"
]
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
[
# https://github.com/pma/amqp/issues/90
extra_applications: [:lager, :logger, :amqp]
]
end
defp deps do
[
{:amqp, "~> 1.1"},
{:poolboy, "~> 1.5"},
{:credo, "~> 1.0.0", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.18", only: :dev, runtime: false},
{:excoveralls, "~> 0.10.4", only: [:dev, :test], runtime: false}
]
end
end