-
Notifications
You must be signed in to change notification settings - Fork 25
/
mix.exs
84 lines (74 loc) · 1.93 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 JokenJwks.MixProject do
use Mix.Project
@source_url "https://github.com/joken-elixir/joken_jwks"
@version "1.7.0-rc.0"
def project do
[
app: :joken_jwks,
version: @version,
name: "Joken JWKS",
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
consolidate_protocols: Mix.env() != :test,
package: package(),
deps: deps(),
docs: docs(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:joken, "~> 2.6"},
{:jason, "~> 1.4"},
{:tesla, "~> 1.4"},
{:hackney, "~> 1.18", optional: true},
{:telemetry, "~> 0.4.2 or ~> 1.0"},
# docs
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
# linters & coverage
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:excoveralls, "~> 0.14", only: :test},
# tests
{:mox, "~> 1.0", only: :test}
]
end
defp package do
[
description: "JWKS (JSON Web Keys Set) support for Joken2",
files: ["lib", "mix.exs", "README.md", "LICENSE", "CHANGELOG.md"],
maintainers: ["Bryan Joseph", "Victor Nascimento"],
licenses: ["Apache-2.0"],
links: %{
"Changelog" => "https://hexdocs.pm/joken_jwks/changelog.html",
"GitHub" => @source_url
}
]
end
defp docs do
[
extras: [
"CHANGELOG.md",
LICENSE: [title: "License"],
"README.md": [title: "Overview"]
],
source_url: @source_url,
source_ref: "v#{@version}",
main: "readme",
formatters: ["html"]
]
end
end