-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
37 lines (32 loc) · 789 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
defmodule Rogger.Mixfile do
use Mix.Project
def project do
[app: :rogger,
version: "0.1.0",
elixir: "~> 1.0",
description: description,
package: package,
source_url: "https://github.com/duartejc/rogger",
deps: deps,
docs: [readme: "README.md", main: "README"]]
end
def application do
[applications: [:logger, :amqp]]
end
defp deps do
[{:amqp, "0.1.1"},
{:timex, "~> 0.13.4"},
{:inch_ex, only: :docs}]
end
defp description do
"""
Elixir logger to publish log messages in RabbitMQ.
"""
end
defp package do
[files: ["lib", "mix.exs", "README.md", "LICENSE"],
contributors: ["Jean Duarte"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/duartejc/rogger"}]
end
end