-
Notifications
You must be signed in to change notification settings - Fork 7
/
mix.exs
45 lines (40 loc) · 845 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
defmodule Immortal.Mixfile do
use Mix.Project
def project do
[
app: :immortal,
version: "0.2.2",
elixir: "~> 1.0",
name: "Immortal",
description: "Helpers for fault-tolerant OTP applications",
source_url: "https://github.com/danielberkompas/immortal",
package: package(),
docs: docs(),
deps: deps()
]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:inch_ex, ">= 0.0.0", only: [:dev, :test]},
{:ex_doc, ">= 0.0.0", only: [:dev, :test]}
]
end
def docs do
[
readme: "README.md",
main: Immortal
]
end
defp package do
[
contributors: ["Daniel Berkompas"],
licenses: ["MIT"],
links: %{
"Github" => "https://github.com/danielberkompas/immortal"
}
]
end
end