-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmix.exs
39 lines (35 loc) · 871 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
defmodule Airbrake.Mixfile do
use Mix.Project
def project do
[
app: :airbrake,
version: "0.6.3",
elixir: "~> 1.7",
package: package(),
description: """
The first Elixir notifier to the Airbrake/Errbit.
System-wide error reporting enriched with the information from Plug and Phoenix channels.
""",
deps: deps(),
docs: [main: "Airbrake"]
]
end
def package do
[
contributors: ["Roman Smirnov"],
maintainers: ["Roman Smirnov"],
licenses: ["LGPL"],
links: %{github: "https://github.com/romul/airbrake-elixir"}
]
end
def application do
[mod: {Airbrake, []}, applications: [:httpoison]]
end
defp deps do
[
{:httpoison, "~> 0.9 or ~> 1.0"},
{:poison, ">= 2.0.0", optional: true},
{:ex_doc, "~> 0.19", only: :dev}
]
end
end