forked from bugsnag-elixir/bugsnag-elixir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
37 lines (33 loc) · 868 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 Bugsnag.Mixfile do
use Mix.Project
def project do
[
app: :bugsnag,
version: "2.0.0",
elixir: "~> 1.3",
package: package(),
description: "An Elixir interface to the Bugsnag API.",
deps: deps()
]
end
def package do
[
contributors: ["Jared Norman", "Andrew Harvey", "Alex Grant", "Coburn Berry"],
maintainers: ["Coburn Berry"],
licenses: ["MIT"],
links: %{github: "https://github.com/jarednorman/bugsnag-elixir"}
]
end
def application do
[applications: [:httpoison, :logger], mod: {Bugsnag, []}]
end
defp deps do
[
{:httpoison, "~> 0.13 or ~> 1.0"},
{:jason, "~> 1.0", optional: true},
{:poison, "~> 1.5 or ~> 2.0 or ~> 3.0", optional: true},
{:ex_doc, ">= 0.0.0", only: :dev},
{:meck, "~> 0.8.3", only: :test}
]
end
end