Packages
altworx_runbox
1.2.0
25.0.0
24.0.0
23.1.0
23.0.0
22.2.0
22.1.0
22.0.0
21.2.0
21.1.2
21.1.1
21.1.0
21.0.0
20.0.0
19.0.0
18.0.0
17.2.0
17.1.0
17.0.1
17.0.0
16.2.0
16.1.0
16.0.0
15.0.0
14.1.0
14.0.1
14.0.0
13.0.3
13.0.2
13.0.1
13.0.0
12.1.0
12.0.0
11.0.1
11.0.0
10.0.0
9.0.0
8.0.0
7.0.1
7.0.0
6.0.0
5.0.0
4.0.0
3.0.0
2.1.0
2.0.0
1.4.1
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
0.1.3
0.1.2
0.1.1
0.1.0
Runbox is a library for running Altworx scenarios.
Current section
Files
Jump to
Current section
Files
altworx_runbox
mix.exs
mix.exs
defmodule Runbox.MixProject do
use Mix.Project
def project do
[
app: :runbox,
version: "1.2.0",
description: description(),
package: package(),
elixir: "~> 1.13",
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},
{:toolbox, "1.0.1", hex: :altworx_toolbox},
{:uuid, "~> 1.1"},
# 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