-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
48 lines (42 loc) · 1.04 KB
/
mix.exs
File metadata and controls
48 lines (42 loc) · 1.04 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
defmodule PlugCollect.MixProject do
use Mix.Project
@source_url "https://github.com/Recruitee/plug_collect"
@version "0.2.0"
def project do
[
app: :plug_collect,
version: @version,
name: "PlugCollect",
description: "Instrumentation library to intercept and collect Plug requests.",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
docs: docs()
]
end
def application(), do: []
defp deps() do
[
{:ex_doc, "~> 0.29.0", only: :dev, runtime: false},
{:plug, ">= 1.1.0"}
]
end
defp package do
[
files: ~w(lib .formatter.exs mix.exs CHANGELOG.md README.md),
maintainers: ["Recruitee", "Andrzej Magdziarz"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => @source_url}
]
end
defp docs do
[
extras: ["README.md"],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}",
skip_undefined_reference_warnings_on: ["CHANGELOG.md"]
]
end
end