Current section
Files
Jump to
Current section
Files
mix.exs
defmodule SCIM.MixProject do
use Mix.Project
def project() do
[
app: :scim,
version: "0.0.0",
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
description:
"Utilities for integrating the System for Cross-domain Identity Management (SCIM) into your application.",
package: package(),
source_url: "https://github.com/rmoorman/scim-elixir"
]
end
# Run "mix help compile.app" to learn about applications.
def application() do
[
extra_applications: [:logger]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps() do
[
{:plug, ">= 1.13.0"},
# dependencies for the phoenix integration
{:phoenix, "~> 1.6"},
{:jason, "~> 1.0"},
# test utilities
{:mix_test_watch, "~> 1.0", only: [:dev, :test], runtime: false},
# docs
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp package() do
[
files: ~w(lib .formatter.exs mix.exs README* LICENSE* CHANGELOG*),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/rmoorman/scim-elixir"}
]
end
end