forked from commanded/commanded-ecto-projections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
106 lines (95 loc) · 2.4 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
97
98
99
100
101
102
103
104
105
106
defmodule Commanded.Projections.Ecto.Mixfile do
use Mix.Project
@source_url "https://github.com/commanded/commanded-ecto-projections"
@version "1.4.0"
def project do
[
app: :commanded_ecto_projections,
version: @version,
elixir: "~> 1.12",
elixirc_paths: elixirc_paths(Mix.env()),
aliases: aliases(),
package: package(),
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
dialyzer: dialyzer()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_env), do: ["lib"]
defp deps do
[
{:commanded, "~> 1.4"},
{:ecto, "~> 3.11"},
{:ecto_sql, "~> 3.11"},
{:postgrex, ">= 0.0.0", only: :test},
# Optional dependencies
{:jason, "~> 1.4", optional: true},
# Test & build tooling
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:mix_test_watch, "~> 1.1", only: :dev, runtime: false},
{:mox, "~> 1.1", only: :test}
]
end
defp aliases do
[
setup: ["ecto.create", "ecto.migrate"],
reset: ["ecto.drop", "setup"]
]
end
defp dialyzer do
[
plt_add_apps: [:ecto, :ex_unit],
plt_add_deps: :app_tree,
plt_file: {:no_warn, "priv/plts/commanded_ecto_projections.plt"}
]
end
defp docs do
[
extra_section: "GUIDES",
extras: [
"CHANGELOG.md",
"guides/Getting Started.md",
"guides/Usage.md"
],
groups_for_extras: [
Introduction: [
"guides/Getting Started.md",
"guides/Usage.md"
]
],
main: "Commanded.Projections.Ecto",
canonical: "http://hexdocs.pm/commanded_ecto_projections",
source_url: @source_url,
source_ref: "v#{@version}",
formatters: ["html"]
]
end
defp package do
[
files: [
"lib",
"mix.exs",
".formatter.exs",
"README*",
"LICENSE*",
"CHANGELOG*",
"priv/repo/migrations"
],
description: "Read model projections for Commanded using Ecto.",
maintainers: ["Ben Smith"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/commanded/commanded-ecto-projections"
}
]
end
end