forked from tallarium/reverse_proxy_plug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
78 lines (70 loc) · 1.84 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
defmodule ReverseProxyPlug.MixProject do
use Mix.Project
@source_url "https://github.com/tallarium/reverse_proxy_plug"
@version "2.1.0"
def project do
[
app: :reverse_proxy_plug,
version: @version,
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
aliases: aliases(),
deps: deps(),
docs: docs(),
package: package()
]
end
defp package do
[
description:
"An Elixir reverse proxy Plug with HTTP/2, chunked transfer and path " <>
"proxying support.",
maintainers: ["Michał Szewczak", "Sam Nipps", "Matt Whitworth"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/tallarium/reverse_proxy_plug"}
]
end
defp aliases do
[
ci: [
"format --check-formatted",
"credo --strict",
"compile --warnings-as-errors --force"
]
]
end
defp elixirc_paths(:test), do: ["test/support", "lib"]
defp elixirc_paths(_), do: ["lib"]
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:mix_test_watch, "~> 1.1", only: [:dev, :test], runtime: false},
{:plug, "~> 1.6"},
{:cowboy, "~> 2.4"},
{:httpoison, "~> 1.2", optional: true},
{:credo, "~> 1.0", only: [:dev, :test]},
{:mox, "~> 1.0", only: :test, optional: true},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:tesla, "~> 1.4", optional: true},
{:bypass, "~> 2.1.0", optional: true, only: :test}
]
end
defp docs do
[
extras: [
"DEVELOPING.md": [title: "Releasing"],
"LICENSE.md": [title: "License"],
"README.md": [title: "Overview"]
],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}",
formatters: ["html"]
]
end
end