forked from bitwalker/libcluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
45 lines (39 loc) · 1.07 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
defmodule Cluster.Mixfile do
use Mix.Project
def project do
[app: :libcluster,
version: "2.1.1",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: "Automatic Erlang cluster formation and management for Elixir/Erlang applications",
package: package(),
docs: docs(),
deps: deps(),
dialyzer: [
flags: ~w(-Wunmatched_returns -Werror_handling -Wrace_conditions -Wno_opaque -Wunderspecs)
]]
end
def application do
[applications: [:logger, :inets, :poison],
mod: {Cluster.App, []}]
end
defp deps do
[{:ex_doc, "~> 0.13", only: :dev},
{:dialyxir, "~> 0.3", only: :dev},
{:poison, "~> 2.2 or ~> 3.0"}]
end
defp package do
[files: ["lib", "mix.exs", "README.md", "LICENSE.md"],
maintainers: ["Paul Schoenfelder"],
licenses: ["MIT"],
links: %{ "GitHub": "https://github.com/bitwalker/libcluster" }]
end
defp docs do
[main: "readme",
formatter_opts: [gfm: true],
extras: [
"README.md"
]]
end
end