forked from okeuday/cpg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
47 lines (42 loc) · 962 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
42
43
44
45
46
47
defmodule CPG.Mixfile do
use Mix.Project
def project do
[app: :cpg,
version: "1.5.1",
language: :erlang,
description: description,
package: package,
deps: deps]
end
def application do
[applications: [
:quickrand,
:trie],
mod: {:cpg_app, []},
registered: [
:cpg_default_scope,
:groups_scope1,
:groups_scope2],
env: [
node_type: :visible,
group_storage: :trie,
scope: [
:cpg_default_scope,
:groups_scope1,
:groups_scope2]]]
end
defp deps do
[{:trie, "~> 1.5.1"},
{:reltool_util, "~> 1.5.1"},
{:quickrand, "~> 1.5.1"}]
end
defp description do
"CloudI Process Groups"
end
defp package do
[files: ~w(src include doc rebar.config README.md LICENSE NOTICE),
maintainers: ["Michael Truog"],
licenses: ["BSD"],
links: %{"GitHub" => "https://github.com/okeuday/cpg"}]
end
end