-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
mix.exs
89 lines (80 loc) · 2.18 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
85
86
87
88
89
defmodule Assent.MixProject do
use Mix.Project
@source_url "https://github.com/pow-auth/assent"
@version "0.2.10"
def project do
[
app: :assent,
version: @version,
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
# Hex
description: "Multi-provider framework",
package: package(),
# Docs
name: "Assent",
docs: docs(),
xref: [
exclude: [:certifi, :httpc, Mint.HTTP, JOSE.JWT, JOSE.JWK, JOSE.JWS, :ssl_verify_hostname]
]
]
end
def application do
[
extra_applications: [:logger, :crypto, :public_key]
]
end
defp deps do
[
# JWT libraries
{:jose, "~> 1.8", optional: true},
# HTTP clients (Jason is required for Req)
{:certifi, ">= 0.0.0", optional: true},
{:ssl_verify_fun, ">= 0.0.0", optional: true},
{:finch, "~> 0.15", optional: true},
{:mint, "~> 1.0", optional: true},
{:req, "~> 0.4", optional: true},
{:jason, "~> 1.0", optional: true},
# Docs and tests
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:credo, "~> 1.1", only: [:dev, :test]},
{:test_server, "~> 0.1.0", only: :test},
{:bandit, ">= 0.0.0", only: :test}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
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/assent",
source_url: @source_url,
extras: [
"README.md": [filename: "README"],
"CHANGELOG.md": [filename: "CHANGELOG"]
],
groups_for_modules: [
Strategies: ~r/^Assent\.Strategy/,
HTTP: ~r/^Assent\.HTTPAdapter.*(?<!Error)$/,
JWT: ~r/^Assent\.JWTAdapter.*(?<!Error)$/
],
skip_undefined_reference_warnings_on: [
"CHANGELOG.md"
]
]
end
end