forked from fazibear/airbrakex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
42 lines (38 loc) · 858 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
defmodule Airbrakex.Mixfile do
use Mix.Project
def project do
[
app: :airbrakex,
version: "0.1.5",
elixir: "~> 1.0",
description: "Airbrake Elixir Notifier",
package: package(),
deps: deps(),
docs: [
main: Airbrakex,
source_url: "https://github.com/fazibear/airbrakex"
]
]
end
def package() do
[
maintainers: ["Michał Kalbarczyk"],
licenses: ["MIT"],
links: %{github: "https://github.com/fazibear/airbrakex"}
]
end
def application() do
[
applications: [:poison, :httpoison]
]
end
defp deps() do
[
{:httpoison, "~> 0.12 or ~> 1.0"},
{:poison, "~> 1.5 or ~> 2.0 or ~> 3.0"},
{:bypass, "~> 0.8", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev},
{:credo, "~> 0.8.0", only: :dev}
]
end
end