-
Notifications
You must be signed in to change notification settings - Fork 18
/
mix.exs
41 lines (37 loc) · 887 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
defmodule BambooMailjet.Mixfile do
use Mix.Project
def project do
[
app: :bamboo_mailjet,
version: "0.1.0",
elixir: "~> 1.3",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
description: "A Mailjet adapter for Bamboo",
package: package(),
deps: deps()
]
end
defp package do
[
maintainers: ["moxide"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/moxide/bamboo_mailjet"}
]
end
def application do
[
applications: [:logger, :bamboo]
]
end
defp deps do
[
{:bamboo, "~> 1.2"},
{:cowboy, "~> 2.6.1", only: [:test, :dev]},
{:plug_cowboy, "~> 2.0", only: [:test, :dev]},
{:credo, "~> 1.0.4", only: [:dev, :test]},
{:ex_doc, "~> 0.19", only: :dev},
{:inch_ex, "~> 2.0.0", only: :dev}
]
end
end