-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
49 lines (40 loc) · 977 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
48
49
defmodule Dbus.Mixfile do
use Mix.Project
@version "0.2.6"
@source_url "https://github.com/aforward/dbus"
def project do
[app: :dbus,
version: @version,
elixir: "~> 1.0",
deps: deps,
# Hex
description: description,
package: package,
# Docs
name: "DBus",
docs: [source_ref: "v#{@version}",
source_url: @source_url]]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[applications: [:logger, :eredis],
mod: {Dbus, []}]
end
defp deps do
[{:eredis, "~> 1.0"},
{:poolboy, "~> 1.4"}]
end
defp description do
"""
A dumb message bus for sharing data between microservices in a relatively decoupled
"""
end
defp package do
[contributors: ["Andrew Forward"],
licenses: ["MIT"],
links: %{"GitHub" => @source_url},
files: ~w(mix.exs README.md CHANGELOG.md lib)]
end
end