-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathmix.exs
92 lines (80 loc) · 2.03 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
90
91
92
defmodule UeberauthAuth0.Mixfile do
use Mix.Project
@source_url "https://github.com/achedeuzot/ueberauth_auth0"
@version "2.1.0"
def project do
[
app: :ueberauth_auth0,
version: @version,
name: "Ueberauth Auth0",
package: package(),
elixir: "~> 1.10",
deps: deps(),
docs: docs(),
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
# Test coverage:
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
vcr: :test,
"vcr.delete": :test,
"vcr.check": :test,
"vcr.show": :test
],
# Type checking
dialyzer: [
plt_core_path: "_build/#{Mix.env()}"
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ueberauth, "~> 0.10"},
{:oauth2, "~> 2.0"},
# Docs:
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
# Testing:
{:exvcr, "~> 0.10", only: :test},
{:excoveralls, "~> 0.11", only: :test},
# Type checking
{:dialyxir, "~> 1.2.0", only: [:dev, :test], runtime: false},
# Lint:
{:credo, "~> 1.1", only: [:dev, :test]}
]
end
defp docs do
[
extras: [
"CHANGELOG.md",
"LICENSE.md": [title: "License"],
"README.md": [title: "Overview"]
],
source_url: @source_url,
source_ref: "v#{@version}",
main: "readme",
formatters: ["html"]
]
end
defp package do
[
name: :ueberauth_auth0,
description: "An Ueberauth strategy for using Auth0 to authenticate your users.",
files: ["lib", "mix.exs", "README.md", "LICENSE.md"],
maintainers: ["Son Tran-Nguyen", "Nikita Sobolev", "Klemen Sever"],
licenses: ["MIT"],
links: %{
Changelog: "https://hexdocs.pm/ueberauth_auth0/changelog.html",
GitHub: @source_url
}
]
end
end