-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
96 lines (87 loc) · 2.44 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
defmodule EctoModel.MixProject do
use Mix.Project
def project do
[
app: :ecto_model,
version: "0.0.1",
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps(),
aliases: aliases(),
dialyzer: [
plt_add_apps: [:iex, :mix, :ex_unit],
plt_file: {:no_warn, "priv/plts/dialyzer.plt"},
flags: [:error_handling]
],
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
lint: :test,
dialyzer: :test,
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"test.watch": :test
],
name: "EctoModel",
package: package(),
description: description(),
source_url: "https://github.com/vetspire/ecto_model",
homepage_url: "https://github.com/vetspire/ecto_model",
docs: [
main: "EctoModel"
],
elixirc_paths: elixirc_paths(Mix.env())
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
def application do
[
mod: {EctoModel.Application, []},
extra_applications: [:logger, :runtime_tools]
]
end
defp description() do
"""
EctoModel is a library that overhauls your EctoSchemas with additional functionality.
"""
end
defp package() do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/vetspire/ecto_model"}
]
end
defp deps do
[
# Ecto Model's actual dependencies
{:jason, "~> 1.1"},
{:ecto, "~> 3.6"},
{:ecto_middleware, "~> 1.0"},
{:ecto_hooks, "~> 1.2"},
# Adapter Dependencies, should be supplied by host app but these
# are nice to have for tests.
{:postgrex, "~> 0.15", only: :test},
{:ecto_sql, "~> 3.6", only: :test},
{:ex_machina, "~> 2.7.0", only: :test},
# Runtime dependencies for tests / linting
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.28", only: :dev},
{:excoveralls, "~> 0.10", only: :test},
{:mix_test_watch, "~> 1.0", only: [:test], runtime: false}
]
end
defp aliases do
[
test: ["coveralls.html --trace --slowest 10"],
lint: [
"format --check-formatted --dry-run",
"credo --strict",
"compile --warnings-as-errors",
"dialyzer"
]
]
end
end