-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
48 lines (42 loc) · 938 Bytes
/
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
defmodule Spotter.MixProject do
use Mix.Project
@version "0.6.1"
def project do
[
app: :spotter,
version: @version,
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps()
]
end
def application do
[
extra_applications: [:amqp, :confex, :logger]
]
end
defp description do
"""
Package for implementing AMQP workers and middlewares
"""
end
defp deps do
[
{:confex, "~> 3.3.1"},
{:amqp, "~> 1.2.2"},
{:earmark, "~> 1.2.6", only: :dev},
{:ex_doc, "~> 0.19.1", only: :dev},
]
end
defp package do
[
name: :spotter,
files: ["lib", "mix.exs", "README.md", "LICENSE"],
maintainers: ["Valeryi Savich"],
licenses: ["BSD 3-clause"],
links: %{"GitHub" => "https://github.com/OpenMatchmaking/spotter"}
]
end
end