Current section

Files

Jump to
Raw

mix.exs

defmodule Runbox.MixProject do
use Mix.Project
def project do
[
app: :runbox,
version: "4.0.0",
description: description(),
package: package(),
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
dialyzer: [
list_unused_filters: true,
plt_add_apps: [:ex_unit, :mix]
]
]
end
def application do
[
extra_applications: [:logger, :eex],
mod: {Runbox.Application, []},
env: [mode: :slave]
]
end
defp description do
"""
Runbox is a library for running Altworx scenarios.
"""
end
defp package do
[
name: :altworx_runbox,
licenses: [
"BSD-3-Clause"
],
links: []
]
end
defp deps do
[
{:gen_stage, "~> 1.1"},
{:mock, "~> 0.3.5", only: :test},
{:uuid, "~> 1.1"},
{:joken, "~> 2.3"},
{:timex, "~> 3.7.11"},
{:jason, "~> 1.3"},
# development tools
{:credo, "~> 1.6.3", only: [:dev, :test], runtime: false},
{:credo_naming, "~> 1.0.0", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.1.0", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.29.1", only: :dev, runtime: false},
{:junit_formatter, "~> 3.1", only: [:test]}
]
end
end