-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
59 lines (53 loc) · 1.29 KB
/
mix.exs
File metadata and controls
59 lines (53 loc) · 1.29 KB
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
defmodule Crow.MixProject do
use Mix.Project
def project do
[
app: :crow,
version: "0.2.1",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
source_url: "https://github.com/jchristgit/crow",
homepage_url: "https://github.com/jchristgit/crow",
deps: deps(),
docs: docs(),
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Crow.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# Linting dependencies
{:credo, "~> 1.7", only: :dev, runtime: false},
{:dialyxir, "~> 1.1", only: :dev, runtime: false},
# Documentation dependencies
{:ex_doc, "~> 0.28", only: :dev, runtime: false}
]
end
defp package do
[
description: "A munin node implementation written in Elixir",
licenses: ["ISC"],
links: %{
"Documentation" => "https://hexdocs.pm/crow",
"GitHub" => "https://github.com/jchristgit/crow"
},
maintainers: ["Johannes Christ"]
]
end
defp docs do
[
main: "introduction",
source_ref: "master",
extras: [
"guides/introduction.md"
]
]
end
end