Current section

Files

Jump to
nerves_ssh mix.exs
Raw

mix.exs

defmodule NervesSSH.MixProject do
use Mix.Project
@version "0.2.2"
@source_url "https://github.com/nerves-project/nerves_ssh"
def project do
[
app: :nerves_ssh,
version: @version,
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
dialyzer: dialyzer(),
docs: docs(),
package: package(),
preferred_cli_env: %{
docs: :docs,
"hex.publish": :docs,
"hex.build": :docs,
credo: :test
}
]
end
def application do
[
extra_applications: [:logger, :public_key, :ssh],
mod: {NervesSSH.Application, []}
]
end
defp deps do
[
{:dialyxir, "~> 1.1.0", only: :dev, runtime: false},
{:ex_doc, "~> 0.22", only: :docs, runtime: false},
{:ssh_subsystem_fwup, "~> 0.5"},
{:nerves_runtime, "~> 0.11"},
# lfe doesn't have a release posted to hex.pm yet so we can't list it as
# an optional dependency on hex. Making it a dev/test only dependency
# gets around this.
{:lfe, github: "lfe/lfe", tag: "2.0", only: [:dev, :test], compile: "make", optional: true},
{:sshex, "~> 2.2.1", only: [:dev, :test]},
{:credo, "~> 1.2", only: :test, runtime: false}
]
end
defp description do
"Manage a SSH daemon and subsystems on Nerves devices"
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
defp package do
%{
files: ["CHANGELOG.md", "lib", "LICENSE", "mix.exs", "priv", "README.md"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => @source_url}
}
end
end