Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Sshd.Mixfile do
use Mix.Project
@source_url "https://github.com/jbenden/esshd"
@version "0.2.1"
def project do
[
app: :esshd,
name: "esshd",
version: @version,
elixir: "~> 1.10",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
docs: docs(),
dialyzer: [
plt_add_deps: :apps_direct,
flags: [:unmatched_returns, :error_handling, :race_conditions, :no_opaque]
],
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"coveralls.json": :test
]
]
end
def application do
# Specify extra applications you'll use from Erlang/Elixir
[
extra_applications: [:logger, :public_key, :ssh, :iex],
mod: {Sshd.Application, []},
env: [
enabled: true,
parallel_login: false,
max_sessions: 50,
idle_time: 86_400_000 * 3,
negotiation_timeout: 11_000,
preferred_algorithms: nil,
password_authenticator: "Sshd.PasswordAuthenticator.Default",
access_list: "Sshd.AccessList.Default",
public_key_authenticator: "Sshd.PublicKeyAuthenticator.Default",
subsystems: [],
handler: :elixir
]
]
end
defp deps do
[
{:credo, "~> 1.5", only: [:dev, :test], runtime: false},
{:cortex, "~> 0.1", only: [:dev, :test]},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:ex_doc, ">= 0.0.0", only: [:dev], runtime: false},
{:excoveralls, "~> 0.4", only: [:dev, :test], runtime: false}
]
end
defp docs do
[
extras: [
"CHANGELOG.md": [],
LICENSE: [title: "License"],
"README.md": [title: "Overview"],
],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}",
formatters: ["html"]
]
end
defp package do
[
description:
"A simple way to add SSH server capabilities to your Elixir or Erlang application",
maintainers: ["Joseph Benden"],
licenses: ["Apache-2.0"],
files: ~w(lib config) ++ ~w(README.md CHANGELOG.md LICENSE mix.exs),
links: %{
Changelog: "https://hexdocs.pm/esshd/changelog.html",
GitHub: @source_url
}
]
end
end