forked from beam-community/bamboo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
65 lines (58 loc) · 1.81 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
defmodule Bamboo.Mixfile do
use Mix.Project
@project_url "https://github.com/paulcsmith/bamboo"
def project do
[app: :bamboo,
version: "0.7.0",
elixir: "~> 1.2",
source_url: @project_url,
homepage_url: @project_url,
compilers: compilers(Mix.env),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: ["coveralls": :test, "coveralls.circle": :test],
elixirc_paths: elixirc_paths(Mix.env),
description: "Straightforward, powerful, and adapter based Elixir email library." <>
" Works with Mandrill, Mailgun, SendGrid, SparkPost, Postmark, in-memory, and test.",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
package: package,
docs: [main: "readme", extras: ["README.md"]],
deps: deps]
end
defp compilers(:test), do: [:phoenix] ++ Mix.compilers
defp compilers(_), do: Mix.compilers
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[
applications: [:logger, :hackney, :poison],
mod: {Bamboo, []}
]
end
defp package do
[
maintainers: ["Paul Smith"],
licenses: ["MIT"],
links: %{"GitHub" => @project_url}
]
end
defp elixirc_paths(:test), do: elixirc_paths ++ ["test/support"]
defp elixirc_paths(_), do: elixirc_paths
defp elixirc_paths, do: ["lib"]
defp deps do
[
{:plug, "~> 1.0"},
{:ex_machina, "~> 1.0", only: :test},
{:cowboy, "~> 1.0", only: [:test, :dev]},
{:phoenix, "~> 1.1", only: :test},
{:phoenix_html, "~> 2.2", only: :test},
{:excoveralls, "~> 0.4", only: :test},
{:floki, "~> 0.8", only: :test},
{:ex_doc, "~> 0.9", only: :dev},
{:earmark, ">= 0.0.0", only: :dev},
{:hackney, "~> 1.6"},
{:poison, ">= 1.5.0"},
]
end
end