This repository has been archived by the owner on Mar 22, 2024. It is now read-only.
forked from mathieuprog/polymorphic_embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
74 lines (64 loc) · 1.48 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
defmodule PolymorphicEmbed.MixProject do
use Mix.Project
@version "1.1.0"
def project do
[
app: :polymorphic_embed,
elixir: "~> 1.9",
deps: deps(),
aliases: aliases(),
elixirc_paths: elixirc_paths(Mix.env()),
# Hex
version: @version,
package: package(),
description: "Polymorphic embeds in Ecto",
# ExDoc
name: "Polymorphic Embed",
source_url: "https://github.com/mathieuprog/polymorphic_embed",
docs: docs()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ecto, "~> 3.5"},
{:jason, "~> 1.2"},
{:phoenix_html, "~> 2.14", optional: true},
{:ex_doc, "~> 0.23", only: :dev},
{:ecto_sql, "~> 3.5", only: :test},
{:postgrex, "~> 0.15", only: :test},
{:query_builder, "~> 0.19.2", only: :test},
{:phoenix_ecto, "~> 4.2", only: :test}
]
end
defp aliases do
[
test: [
"ecto.create --quiet",
"ecto.rollback --all",
"ecto.migrate",
"test"
]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp package do
[
licenses: ["Apache 2.0"],
maintainers: ["Mathieu Decaffmeyer"],
links: %{"GitHub" => "https://github.com/mathieuprog/polymorphic_embed"}
]
end
defp docs do
[
main: "readme",
extras: ["README.md"],
source_ref: "v#{@version}"
]
end
end