-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
41 lines (37 loc) · 828 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
41
defmodule DistributedStream.MixProject do
use Mix.Project
def project do
[
package: package(),
app: :distributed_stream,
version: "0.1.4",
elixir: "~> 1.16",
start_permanent: Mix.env() == :prod,
deps: deps(),
aliases: [
test: "test --no-start"
]
]
end
defp package do
[
description: "Library for distributing stream processing across a cluster",
licenses: ["MIT"],
maintainers: ["pguillory@gmail.com"],
links: %{
"GitHub" => "https://github.com/pguillory/distributed_stream"
}
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
# {:local_cluster, ">= 0.0.0", only: [:test]}
]
end
end