forked from koudelka/honeydew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
60 lines (53 loc) · 1.39 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
defmodule Honeydew.Mixfile do
use Mix.Project
@version "1.2.7"
def project do
[app: :honeydew,
version: @version,
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
docs: docs(),
deps: deps(),
package: package(),
elixirc_paths: elixirc_paths(Mix.env),
description: "Pluggable local/remote job queue + worker pool with permanent workers.",
dialyzer: [
plt_add_apps: [:mnesia, :ex_unit],
flags: [
# :unmatched_returns,
# :error_handling,
:race_conditions,
:no_opaque
]
]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[extra_applications: [:logger],
mod: {Honeydew.Application, []}]
end
defp deps do
[
{:riakc, ">= 2.4.1", only: :dev},
{:ex_doc, ">= 0.0.0", only: :dev},
{:dialyxir, "~> 0.5", only: [:dev, :test], runtime: false},
]
end
defp package do
[maintainers: ["Michael Shapiro"],
licenses: ["MIT"],
links: %{"GitHub": "https://github.com/koudelka/honeydew"}]
end
defp docs do
[extras: ["README.md"],
source_url: "https://github.com/koudelka/honeydew",
source_ref: @version,
assets: "assets",
main: "readme"]
end
end