Current section

Files

Jump to
assent mix.exs
Raw

mix.exs

defmodule Assent.MixProject do
use Mix.Project
@source_url "https://github.com/pow-auth/assent"
@version "0.2.13"
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
{: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},
# Docs and tests
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:credo, "~> 1.1", only: [:dev, :test]},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:test_server, "~> 0.1.0", only: :test},
{:plug, ">= 0.0.0", only: [:dev, :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