defmodule SSHSubsystemFwup.MixProject do use Mix.Project @version "0.5.0" @source_url "https://github.com/nerves-project/ssh_subsystem_fwup" def project do [ app: :ssh_subsystem_fwup, version: @version, elixir: "~> 1.8", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, 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, :ssh]] end defp elixirc_paths(:test), do: ["lib", "test/support"] defp elixirc_paths(_), do: ["lib"] defp description do "Over-the-air updates to Nerves devices via an ssh subsystem" end defp package do %{ licenses: ["Apache-2.0"], links: %{"GitHub" => @source_url} } end defp deps do [ {:ex_doc, "~> 0.22", only: :docs, runtime: false}, {:dialyxir, "~> 1.0.0", only: :dev, runtime: false}, {:credo, "~> 1.2", only: :test, runtime: false} ] end defp dialyzer() do [ flags: [:race_conditions, :unmatched_returns, :error_handling, :underspecs], plt_add_apps: [:mix] ] 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