forked from fewlinesco/bamboo_smtp
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmix.exs
45 lines (40 loc) · 1.11 KB
/
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
43
44
45
defmodule BambooSmtp.Mixfile do
use Mix.Project
@project_url "https://github.com/fewlinesco/bamboo_smtp"
def project do
[app: :bamboo_smtp,
version: "1.5.0-rc.1",
elixir: "~> 1.4.0",
source_url: @project_url,
homepage_url: @project_url,
name: "Bamboo SMTP Adapter",
description: "A Bamboo adapter for SMTP",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
test_coverage: [tool: ExCoveralls],
package: package(),
deps: deps(),
docs: [main: "README", extras: ["README.md"]]]
end
def application do
[applications: [:gen_smtp, :logger, :bamboo]]
end
defp deps do
[
{:bamboo, "~> 1.0.0-rc.2"},
{:credo, "~> 0.8.2", only: [:dev, :test]},
{:earmark, ">= 1.0.3", only: :dev},
{:ex_doc, "~> 0.16.2", only: :dev},
{:excoveralls, "~> 0.7.1", only: :test},
{:gen_smtp, "~> 0.12.0"},
{:inch_ex, "~> 0.5.5", only: :docs}
]
end
defp package do
[
maintainers: ["Kevin Disneur", "Thomas Gautier"],
licenses: ["MIT"],
links: %{"GitHub" => @project_url}
]
end
end