Current section
Files
Jump to
Current section
Files
sandbox_registry
mix.exs
mix.exs
defmodule SandboxRegistry.MixProject do
use Mix.Project
def project do
[
app: :sandbox_registry,
version: "0.1.1",
elixir: "~> 1.10",
description: "Registry to help create sandboxes for testing",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
package: package(),
test_coverage: [tool: ExCoveralls],
dialyzer: [
plt_add_apps: [:ex_unit, :mix, :credo, :jason],
list_unused_filters: true,
plt_local_path: ".check",
plt_core_path: ".check"
],
preferred_cli_env: [
dialyzer: :test,
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
]
end
defp package do
[
maintainers: ["Mika Kalathil"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/mikaak/sandbox_registry"},
files: ~w(mix.exs README.md CHANGELOG.md LICENSE lib)
]
end
defp docs do
[
main: "SandboxRegistry",
source_url: "https://github.com/mikaak/sandbox_registry"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, ">= 0.0.0", optional: true, only: :dev},
{:dialyxir, "~> 1.0", optional: true, only: :test, runtime: false},
{:credo, "~> 1.6", only: [:test, :dev], runtime: false},
{:blitz_credo_checks, "~> 0.1", only: [:test, :dev], runtime: false}
]
end
end