-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
46 lines (40 loc) · 1.05 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
defmodule HemdalTrooper.MixProject do
use Mix.Project
@version "1.0.0"
def project do
[
app: :hemdal_trooper,
version: @version,
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "Hemdal Trooper",
docs: docs()
]
end
def application do
[
extra_applications: [:logger, :runtime_tools]
]
end
defp deps do
[
{:trooper, "~> 0.3.0"},
{:hemdal, github: "altenwald/hemdal"},
# only for dev
{:dialyxir, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:credo, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:doctor, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:ex_check, "~> 0.14", only: [:dev, :test], runtime: false},
{:ex_doc, ">= 0.0.0", only: [:dev, :test], runtime: false}
]
end
defp docs do
[
main: "Hemdal Trooper",
source_ref: "v#{@version}",
canonical: "http://hexdocs.pm/hemdal_trooper",
source_url: "https://github.com/altenwald/hemdal_trooper"
]
end
end