-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
102 lines (91 loc) · 2.11 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
defmodule CommcareAPI.MixProject do
use Mix.Project
@source_url "https://github.com/RatioPBC/commcare_api"
@version "0.3.1"
def project do
[
aliases: aliases(),
app: :commcare_api,
deps: deps(),
description: description(),
dialyzer: dialyzer(),
docs: docs(),
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
package: package(),
preferred_cli_env: ["test.ci": :test],
start_permanent: Mix.env() == :prod,
version: @version
]
end
defp elixirc_paths(:test), do: ~w(lib test/support)
defp elixirc_paths(_), do: ~w(lib)
defp aliases do
[
"test.ci": [
"format --check-formatted",
"deps.unlock --check-unused",
"credo --strict",
"test --raise",
"dialyzer"
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
def description do
"A small client for the CommCare API."
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:euclid, "~> 0.2"},
{:jason, "~> 1.0"},
{:floki, ">= 0.30.0"},
{:httpoison, "~> 1.6"},
{:timex, "~> 3.7"},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:hammox, "~> 0.5", only: [:test]},
{:mix_audit, "~> 0.1", only: [:dev, :test], runtime: false},
{:ex_doc, ">= 0.24.0", only: :dev, runtime: false}
]
end
defp dialyzer() do
[
ignore_warnings: "dialyzer.ignore",
plt_add_apps: []
]
end
defp docs do
[
extras: extras(),
formatters: ["html"],
main: "readme",
name: "CommCare API",
source_ref: "v#{@version}",
source_url: @source_url
]
end
defp extras do
[
"README.md",
"LICENSE",
"CHANGELOG.md"
]
end
defp package do
[
licenses: ["Apache-2.0"],
links: %{
GitHub: @source_url,
Sponsor: "https://ratiopbc.com"
},
maintainers: ["Jesse Cooke"]
]
end
end