Current section
Files
Jump to
Current section
Files
beam_notify
mix.exs
mix.exs
defmodule BEAMNotify.MixProject do
use Mix.Project
@version "0.2.2"
@source_url "https://github.com/nerves-networking/beam_notify"
def project do
[
app: :beam_notify,
version: @version,
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
compilers: [:elixir_make | Mix.compilers()],
make_targets: ["all"],
make_clean: ["mix_clean"],
make_error_message: "",
deps: deps(),
dialyzer: dialyzer(),
docs: docs(),
package: package(),
description: description(),
preferred_cli_env: %{
docs: :docs,
"hex.publish": :docs,
"hex.build": :docs,
credo: :test
}
]
end
def application do
[
extra_applications: [:logger]
]
end
defp description do
"Send a message to the BEAM from a shell script"
end
defp package do
%{
files: [
"lib",
"mix.exs",
"Makefile",
"README.md",
"c_src/*.[ch]",
"LICENSE",
"CHANGELOG.md"
],
licenses: ["Apache-2.0"],
links: %{"GitHub" => @source_url}
}
end
defp deps do
[
{:elixir_make, "~> 0.6", runtime: false},
{:ex_doc, "~> 0.22", only: :docs, runtime: false},
{:dialyxir, "~> 1.1.0", only: [:dev, :test], runtime: false},
{:credo, "~> 1.2", only: :test, runtime: false}
]
end
defp dialyzer() do
[
flags: [:race_conditions, :unmatched_returns, :error_handling, :underspecs]
]
end
defp docs do
[
extras: ["README.md", "CHANGELOG.md"],
main: "readme",
source_ref: "v#{@version}",
source_url: @source_url,
skip_undefined_reference_warnings_on: ["CHANGELOG.md"]
]
end
end