-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
40 lines (35 loc) · 827 Bytes
/
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
defmodule Flub.Mixfile do
use Mix.Project
@version "1.1.4"
@repo_url "https://github.com/meyercm/flub"
def project do
[
app: :flub,
version: @version,
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
package: hex_package(),
description: "Sane pub/sub within and across nodes."
]
end
def application do
[applications: [:logger, :ets_owner, :gproc],
mod: {Flub.App, []}]
end
defp hex_package do
[maintainers: ["Chris Meyer"],
licenses: ["MIT"],
links: %{"GitHub" => @repo_url}]
end
defp deps do
[
{:ets_owner, "~> 1.0"},
{:ex2ms, "~> 1.0"},
{:shorter_maps, "~> 2.1"},
{:gproc, "~> 0.5"},
{:ex_doc, ">= 0.0.0", only: :dev},
]
end
end