-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmix.exs
90 lines (80 loc) · 2.2 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
defmodule MishkaInstaller.MixProject do
use Mix.Project
@version "0.1.1"
@source_url "https://github.com/mishka-group/mishka_installer"
def project do
[
app: :mishka_installer,
version: @version,
elixir: "~> 1.16",
name: "Mishka installer",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
homepage_url: "https://github.com/mishka-group",
source_url: @source_url,
docs: docs(),
test_coverage: [
ignore_modules: [
MishkaInstaller.MnesiaRepo.State,
MishkaInstaller.Installer.PortHandler,
MishkaInstaller.MnesiaRepo,
MishkaInstaller.Installer.CompileHandler,
MishkaInstaller.Installer.Collect,
Collectable.MishkaInstaller.Installer.Collect,
~r/\.Support.MishkaPlugin\./
]
]
]
end
def application do
[
extra_applications: [:logger],
mod: {MishkaInstaller.Application, []}
]
end
defp deps do
[
{:phoenix_pubsub, "~> 2.1.3"},
{:req, "~> 0.5.7"},
{:plug, "~> 1.16"},
# Extra tools
{:mishka_developer_tools, "~> 0.1.8"},
{:guarded_struct, "~> 0.0.2"},
# We will cover telemetry in whole project
{:telemetry, "~> 1.3"},
# Dev and Test dependencies
{:ex_doc, "~> 0.35.1", only: :dev, runtime: false},
{:hex_core, "~> 0.10.3", only: :test}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp description() do
"Mishka Installer is a system plugin manager and run time installer for elixir."
end
defp package() do
[
files: ~w(lib .formatter.exs mix.exs LICENSE README* Changelog.md),
licenses: ["Apache-2.0"],
maintainers: ["Shahryar Tavakkoli"],
links: %{
"GitHub" => @source_url,
"Changelog" => "https://hexdocs.pm/mishka_installer/changelog.html"
}
]
end
defp docs() do
[
main: "readme",
source_ref: "v#{@version}",
extras: [
"README.md",
"CHANGELOG.md"
],
source_url: @source_url
]
end
end