-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmix.exs
85 lines (76 loc) · 1.81 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
defmodule Rabbit.MixProject do
use Mix.Project
@version "0.21.0"
def project do
[
app: :rabbit,
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
name: "Rabbit",
docs: docs(),
aliases: aliases(),
preferred_cli_env: preferred_cli_env()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp description do
"""
A set of tools for building robust applications with RabbitMQ.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README*"],
maintainers: ["Nicholas Sweeting"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/nsweeting/rabbit"}
]
end
defp docs do
[
extras: ["README.md"],
main: "readme",
source_url: "https://github.com/nsweeting/rabbit"
]
end
# Aliases are shortcuts or tasks specific to the current project.
defp aliases do
[
ci: [
"deps.get",
"compile --warnings-as-errors",
"format --check-formatted",
"credo --strict",
"test"
]
]
end
# Specifies the preferred env for mix commands.
defp preferred_cli_env do
[
ci: :test
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:amqp, "~> 4.0"},
{:poolboy, "~> 1.5"},
{:keyword_validator, "~> 2.0"},
{:jason, "~> 1.4", optional: true},
{:benchee, "~> 1.0", only: :dev, runtime: false},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.28", only: :dev, runtime: false}
]
end
end