forked from jbenden/esshd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
68 lines (62 loc) · 2.09 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
defmodule Sshd.Mixfile do
use Mix.Project
@version "0.1.1"
def project do
[app: :esshd,
version: @version,
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
package: package(),
description: "A simple way to add SSH server capabilities to your Elixir or Erlang application",
name: "esshd",
source_url: "https://github.com/jbenden/esshd",
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],
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, "~> 0.8", only: [:dev, :test], runtime: false},
{:cortex, "~> 0.1", only: [:dev, :test]},
{:dialyxir, "~> 0.5", only: [:dev], runtime: false},
{:ex_doc, "~> 0.19", only: [:dev], runtime: false},
{:excoveralls, "~> 0.4", only: [:dev, :test], runtime: false},
]
end
defp docs do
[source_ref: "v#{@version}",
source_url: "https://github.com/jbenden/esshd",
extras: ["README.md", "CHANGELOG.md"]]
end
defp package do
[maintainers: ["Joseph Benden"],
licenses: ["Apache-2.0"],
links: %{github: "https://github.com/jbenden/esshd"},
files: ~w(lib config) ++ ~w(README.md CHANGELOG.md LICENSE mix.exs)]
end
end