-
Notifications
You must be signed in to change notification settings - Fork 59
/
mix.exs
62 lines (55 loc) · 1.5 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
defmodule Honeydew.Mixfile do
use Mix.Project
@version "1.5.0"
def project do
[app: :honeydew,
version: @version,
elixir: "~> 1.12.0",
start_permanent: Mix.env() == :prod,
docs: docs(),
deps: deps(),
package: package(),
elixirc_paths: elixirc_paths(Mix.env),
description: "Pluggable local/clusterable job queue focused on safety.",
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],
included_applications: [:mnesia],
mod: {Honeydew.Application, []}]
end
defp deps do
[
{:ecto, "~> 3.0", optional: true, only: [:dev, :prod]},
{:ex_doc, ">= 0.0.0", only: :dev},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
# {:eflame, git: "[email protected]:slfritchie/eflame", only: :dev},
]
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