-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
60 lines (53 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
58
59
60
defmodule Lepus.MixProject do
use Mix.Project
@version "0.1.5"
@description "Opinionated library for RabbitMQ with exponential backoff retries and RPC."
@source_url "https://github.com/Recruitee/lepus"
def project do
[
name: "Lepus",
version: @version,
description: @description,
source_url: @source_url,
app: :lepus,
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:amqp, :logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:broadway_rabbitmq, "~> 0.7"},
{:jason, "~> 1.0"},
{:phoenix_pubsub, ">= 1.0.0"},
{:nimble_options, ">= 0.3.7 and < 2.0.0"},
# Dev tools
{:credo, "~> 1.4", only: :dev, runtime: false},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:mix_test_watch, "~> 1.0", only: :dev, runtime: false},
{:ex_doc, "~> 0.25", only: :dev, runtime: false},
{:mox, "~> 1.0", only: :test}
]
end
def docs do
[
main: "readme",
extras: ["README.md"]
]
end
defp package do
[
links: %{"GitHub" => @source_url},
licenses: ["MIT"]
]
end
end