-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmix.exs
70 lines (62 loc) · 1.64 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
defmodule UeberauthAzureAD.MixProject do
use Mix.Project
@version "0.0.0"
@url "https://github.com/jungrafael/ueberauth_azure_ad"
@maintainers ["Rafael Jung"]
def project do
[
app: :ueberauth_azure_ad,
version: @version,
elixir: "~> 1.6",
elixirc_paths: elixirc_paths(Mix.env),
compilers: Mix.compilers() ++ [:npm],
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "Ueberauth Azure Active Directory B2C",
description: "Azure Active Directory Strategy for Überauth",
source_url: @url,
homepage_url: @url,
package: package(),
deps: deps(),
docs: docs()
]
end
defp elixirc_paths(_), do: ["lib", "node_modules"]
def package do
[
maintainers: @maintainers,
licenses: ["MIT"],
links: %{"GitHub" => @url},
files: ~w(lib) ++ ~w(LICENSE.md mix.exs README.md)
]
end
def docs do
[
extras: ["README.md", "LICENSE.md"],
source_ref: "v#{@version}",
main: "readme"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :ueberauth, :oauth2]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:oauth2, "~> 0.9.2"},
{:json_web_token, "~> 0.2.5"},
{:jason, "~> 1.1"},
{:secure_random, "~> 0.5"},
{:httpoison, "~> 1.2"},
{:ueberauth, "~> 0.5"},
# tools
{:mock, "~> 0.3.0", only: :test},
{:mix_test_watch, "~> 0.8", only: :dev, runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev},
]
end
end