-
Notifications
You must be signed in to change notification settings - Fork 67
/
mix.exs
84 lines (76 loc) · 2.16 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
79
80
81
82
83
84
defmodule ReverseProxyPlug.MixProject do
use Mix.Project
@source_url "https://github.com/tallarium/reverse_proxy_plug"
@version "3.0.2"
def project do
[
app: :reverse_proxy_plug,
version: @version,
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
aliases: aliases(),
deps: deps(),
docs: docs(),
package: package(),
test_coverage: [tool: ExCoveralls],
dialyzer: [plt_add_apps: [:httpoison, :tesla]]
]
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",
"coveralls.html"
]
]
end
defp elixirc_paths(:test), do: ["test/support", "lib"]
defp elixirc_paths(_), do: ["lib"]
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:req, "~> 0.3.0 or ~> 0.4.0 or ~> 0.5.0", optional: true},
{:finch, "~> 0.18", optional: true},
{:excoveralls, "~> 0.18", only: :test},
{:mix_test_watch, "~> 1.1", only: [:dev, :test], runtime: false},
{:plug, "~> 1.6"},
{:httpoison, "~> 1.2 or ~> 2.0", optional: true},
{:credo, "~> 1.0", only: [:dev, :test], runtime: false},
{:hammox, "~> 0.7", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:tesla, "~> 1.4", optional: true},
{:bypass, "~> 2.1.0", optional: true, only: :test},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false}
]
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