-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
mix.exs
81 lines (70 loc) · 1.83 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
defmodule TestServer.MixProject do
use Mix.Project
@source_url "https://github.com/danschultzer/test_server"
@version "0.1.17"
def project do
[
app: :test_server,
version: @version,
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
# Hex
description: "Mock third-party services in ExUnit",
package: package(),
# Docs
name: "TestServer",
docs: docs()
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
def application do
[
extra_applications: [:logger, :crypto, :public_key],
mod: {TestServer.Application, []}
]
end
defp deps do
[
{:plug, "~> 1.14"},
{:x509, "~> 0.6"},
# Optional web servers
{:bandit, ">= 1.4.0", optional: true},
{:plug_cowboy, ">= 2.0.0", optional: true},
# Development and test
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:ssl_verify_fun, ">= 0.0.0", only: [:test]},
{:credo, ">= 0.0.0", only: [:dev, :test]},
{:websockex, "~> 0.4.3", only: [:test]},
{:finch, ">= 0.0.0", only: [:test]}
]
end
defp package do
[
maintainers: ["Dan Schultzer"],
licenses: ["MIT"],
links: %{
"GitHub" => @source_url,
"Sponsor" => "https://github.com/sponsors/danschultzer"
},
files: ~w(lib LICENSE mix.exs README.md)
]
end
defp docs do
[
source_ref: "v#{@version}",
main: "README",
canonical: "http://hexdocs.pm/test_server",
source_url: @source_url,
extras: [
"README.md": [filename: "README"],
"CHANGELOG.md": [filename: "CHANGELOG"]
],
skip_undefined_reference_warnings_on: [
"CHANGELOG.md"
]
]
end
end