-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
70 lines (63 loc) · 1.58 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
defmodule EctoXml.MixProject do
use Mix.Project
@source_url "https://github.com/pedro-lb/ecto_xml"
def project do
[
app: :ecto_xml,
version: "1.0.1",
elixir: "~> 1.12",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
consolidate_protocols: Mix.env() != :test,
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
description: description(),
package: package(),
deps: deps(),
docs: docs()
]
end
defp description do
"""
EctoXml provides a way to easily generate XML documents from Ecto Schemas and maps.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Pedro Bini"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/pedro-lb/ecto_xml"}
]
end
defp docs do
[
main: "readme",
source_url: @source_url,
extras: ["README.md"]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:xml_builder, "~> 2.1"},
# Dev & Test
{:credo, "~> 1.5", only: [:dev, :test], runtime: false},
{:phoenix_ecto, "~> 4.1", only: [:dev, :test]},
{:ex_doc, "~> 0.24.2", only: :dev},
# Test
{:excoveralls, "~> 0.14.0", only: :test}
]
end
end