-
Notifications
You must be signed in to change notification settings - Fork 13
/
mix.exs
82 lines (74 loc) · 1.72 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
defmodule Subscribex.Mixfile do
use Mix.Project
@version "0.11.0-rc.1"
def project do
[
app: :subscribex,
version: @version,
elixir: "~> 1.12",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
package: package(),
description: "A high-level library for making RabbitMQ subscribers",
dialyzer: [
plt_add_apps: [:amqp],
flags: [
"-Werror_handling",
"-Wrace_conditions",
"-Woverspecs"
]
],
deps: deps(),
aliases: aliases(),
# Docs
name: "Subscribex",
docs: docs()
]
end
def aliases() do
[compile: ["compile --warnings-as-errors"]]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:amqp, "~> 3.0"},
{:ex_doc, "~> 0.25.3", only: :dev},
{:dialyxir, "~> 1.1", only: :dev, runtime: false}
]
end
defp package do
[
licenses: ["MIT"],
maintainers: ["[email protected]"],
links: %{"Github" => "http://github.com/cjpoll/subscribex"}
]
end
defp docs do
[
main: "Subscribex",
source_ref: "v#{@version}",
canonical: "http://hexdocs.pm/subscribex",
source_url: "https://github.com/cjpoll/subscribex",
extras: [
"guides/Getting Started.md",
"guides/Utilizing Subscribers.md"
],
groups_for_modules: [
# Subscribex,
"Broker specification": [
Subscribex.Broker
],
"Subscriber specification": [
Subscribex.Subscriber,
Subscribex.Subscriber.Config,
Subscribex.BatchSubscriber,
Subscribex.BatchSubscriber.Config
]
]
]
end
end