-
Notifications
You must be signed in to change notification settings - Fork 11
/
mix.exs
92 lines (86 loc) · 2.42 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# SPDX-License-Identifier: Apache-2.0
defmodule Sshd.Mixfile do
use Mix.Project
@source_url "https://github.com/jbenden/esshd"
@version "0.3.0"
def project do
[
app: :esshd,
name: "esshd",
version: @version,
elixir: "~> 1.14",
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