ash_authentication/mix.exs

195 lines
5.7 KiB
Elixir
Raw Permalink Normal View History

2022-09-28 09:54:05 +13:00
defmodule AshAuthentication.MixProject do
2022-09-28 10:04:04 +13:00
@moduledoc false
2022-09-28 09:54:05 +13:00
use Mix.Project
2023-01-30 14:46:09 +13:00
@version "3.7.5"
2022-09-28 10:04:04 +13:00
2022-09-28 09:54:05 +13:00
def project do
[
app: :ash_authentication,
2022-09-28 10:04:04 +13:00
version: @version,
description: "User authentication support for Ash",
2022-09-28 09:54:05 +13:00
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
2022-09-28 10:23:40 +13:00
preferred_cli_env: [ci: :test],
aliases: aliases(),
2022-09-28 10:04:04 +13:00
deps: deps(),
2022-09-28 10:11:00 +13:00
package: package(),
elixirc_paths: elixirc_paths(Mix.env()),
2022-09-28 10:11:00 +13:00
dialyzer: [
plt_add_apps: [:mix, :ex_unit],
plt_core_path: "priv/plts",
plt_file: {:no_warn, "priv/plts/dialyzer.plt"}
2022-10-25 20:32:57 +13:00
],
docs: [
main: "readme",
extras: extra_documentation(),
groups_for_extras: extra_documentation_groups(),
extra_section: "GUIDES",
2022-10-25 20:32:57 +13:00
formatters: ["html"],
filter_modules: ~r/^Elixir.AshAuthentication/,
source_url_pattern:
"https://github.com/team-alembic/ash_authentication/blob/main/%{path}#L%{line}",
spark: [
extensions: [
%{
module: AshAuthentication,
name: "Authentication",
target: "Ash.Resource",
type: "Authentication"
},
%{
module: AshAuthentication.TokenResource,
name: "Token Resource",
target: "Ash.Resource",
type: "Token"
},
%{
module: AshAuthentication.UserIdentity,
name: "User Identity",
target: "Ash.Resource",
type: "User identity"
}
]
],
2022-10-25 20:32:57 +13:00
groups_for_modules: [
Extensions: [
AshAuthentication,
AshAuthentication.TokenResource,
AshAuthentication.UserIdentity
],
Strategies: [
AshAuthentication.Strategy,
AshAuthentication.Strategy.Password,
AshAuthentication.Strategy.OAuth2
2022-10-25 20:32:57 +13:00
],
"Add ons": [
AshAuthentication.AddOn.Confirmation
],
2022-10-25 20:32:57 +13:00
Cryptography: [
AshAuthentication.HashProvider,
AshAuthentication.BcryptProvider,
AshAuthentication.Jwt
2022-10-25 20:32:57 +13:00
],
Plug: ~r/^AshAuthentication\.Plug.*/,
Internals: ~r/^AshAuthentication.*/
]
2022-09-28 10:11:00 +13:00
]
2022-09-28 10:04:04 +13:00
]
end
defp extra_documentation do
(["README.md"] ++
Path.wildcard("documentation/**/*.md"))
|> Enum.map(fn
"README.md" ->
{:"README.md", title: "Read Me", ash_hq?: false}
2022-12-16 12:02:34 +13:00
"documentation/tutorials/" <> _ = path ->
{String.to_atom(path), []}
"documentation/topics/" <> _ = path ->
{String.to_atom(path), []}
end)
end
defp extra_documentation_groups do
"documentation/*"
|> Path.wildcard()
|> Enum.map(fn dir ->
name =
dir
|> Path.basename()
|> String.split(~r/_+/)
|> Enum.join(" ")
|> String.capitalize()
{name, dir |> Path.join("**") |> Path.wildcard()}
end)
end
2022-09-28 10:04:04 +13:00
def package do
[
maintainers: [
"James Harton <james.harton@alembic.com.au>",
"Zach Daniel <zach@zachdaniel.dev>"
2022-09-28 10:04:04 +13:00
],
licenses: ["MIT"],
links: %{
"Source" => "https://github.com/team-alembic/ash_authentication",
"Phoenix Support" => "https://github.com/team-alembic/ash_authentication_phoenix"
2022-09-28 10:04:04 +13:00
},
source_url: "https://github.com/team-alembic/ash_authentication",
files: ~w[lib .formatter.exs mix.exs README* LICENSE* CHANGELOG* documentation]
2022-09-28 09:54:05 +13:00
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: extra_applications(Mix.env()),
2022-09-28 09:54:05 +13:00
mod: {AshAuthentication.Application, []}
]
end
defp extra_applications(:dev), do: [:logger, :bcrypt_elixir]
defp extra_applications(:test), do: [:logger, :bcrypt_elixir]
defp extra_applications(_), do: [:logger]
2022-09-28 09:54:05 +13:00
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ash, ash_version("~> 2.5 and >= 2.5.11")},
{:spark, "~> 0.3.4"},
{:jason, "~> 1.4"},
{:joken, "~> 2.5"},
{:plug, "~> 1.13"},
{:assent, "~> 0.2"},
{:mint, "~> 1.4"},
{:castore, "~> 0.1"},
{:bcrypt_elixir, "~> 3.0"},
{:absinthe_plug, "~> 1.5", only: [:dev, :test]},
{:ash_graphql, "~> 0.21", only: [:dev, :test]},
{:ash_json_api, "~> 0.30", only: [:dev, :test]},
{:ash_postgres, "~> 1.3.1", only: [:dev, :test]},
2022-09-28 10:23:40 +13:00
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.2", only: [:dev, :test], runtime: false},
2022-09-28 10:11:00 +13:00
{:doctor, "~> 0.18", only: [:dev, :test]},
{:elixir_sense, github: "elixir-lsp/elixir_sense", only: [:dev, :test]},
{:ex_doc, ">= 0.0.0", only: [:dev, :test]},
{:faker, "~> 0.17.0", only: [:dev, :test]},
{:git_ops, "~> 2.4", only: [:dev, :test], runtime: false},
{:mimic, "~> 1.7", only: [:dev, :test]},
{:plug_cowboy, "~> 2.5", only: [:dev, :test]}
2022-09-28 09:54:05 +13:00
]
end
2022-09-28 10:23:40 +13:00
defp aliases do
[
ci: [
"format --check-formatted",
"doctor --full --raise",
2022-09-28 10:23:40 +13:00
"credo --strict",
"dialyzer",
"hex.audit",
"test"
],
docs: ["docs", "ash.replace_doc_links"],
test: ["ecto.create --quiet", "ecto.migrate --quiet", "test"]
2022-09-28 10:23:40 +13:00
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(:dev), do: ["lib", "test/support", "dev"]
defp elixirc_paths(_), do: ["lib"]
defp ash_version(default_version) do
case System.get_env("ASH_VERSION") do
nil -> default_version
"local" -> [path: "../ash"]
"main" -> [git: "https://github.com/ash-project/ash.git"]
version -> "~> #{version}"
end
end
2022-09-28 09:54:05 +13:00
end