-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
49 lines (45 loc) · 1.22 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
defmodule OAuth2TokenManager.MixProject do
use Mix.Project
def project do
[
app: :oauth2_token_manager,
description: "Manages OAuth2 tokens and OpenID Connect claims and ID tokens",
version: "0.3.0",
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
docs: [
main: "readme",
extras: ["README.md"]
],
deps: deps(),
package: package(),
source_url: "https://github.com/tanguilp/oauth2_token_manager"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:dialyxir, "~> 1.0.0-rc.4", only: [:dev], runtime: false},
{:ex_doc, "~> 0.19", only: :dev, runtime: false},
{:hackney, "~> 1.0", optional: true},
{:jose_utils, "~> 0.2"},
{:knigge, "~> 1.1"},
{:oauth2_metadata_updater, "~> 1.0"},
{:oauth2_utils, "~> 0.1.0"},
{:oidc, "~> 0.4"},
{:tesla_oauth2_client_auth, "~> 1.0"}
]
end
def package() do
[
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/tanguilp/oauth2_token_manager"}
]
end
end