ash_authentication/mix.exs
2022-09-28 10:06:27 +13:00

47 lines
1 KiB
Elixir

defmodule AshAuthentication.MixProject do
@moduledoc false
use Mix.Project
@version "0.1.0"
def project do
[
app: :ash_authentication,
version: @version,
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package()
]
end
def package do
[
maintainers: [
"James Harton <james.harton@alembic.com.au>"
],
licenses: ["MIT"],
links: %{
"Source" => "https://github.com/team-alembic/ash_authentication"
},
source_url: "https://github.com/team-alembic/ash_authentication"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {AshAuthentication.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.6", only: [:dev, :test]},
{:git_ops, "~> 2.4", only: [:dev, :test], runtime: false},
{:ex_doc, ">= 0.0.0", only: [:dev, :test]}
]
end
end