-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
69 lines (60 loc) · 1.85 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
defmodule GuardedStruct.MixProject do
use Mix.Project
@version "0.0.3"
@source_url "https://github.com/mishka-group/guarded_struct"
def project do
[
app: :guarded_struct,
version: @version,
elixir: "~> 1.17",
name: "GuardedStruct",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
source_url: @source_url,
docs: [
main: "readme",
source_ref: "v#{@version}",
extras: ["README.md", "CHANGELOG.md"],
source_url: @source_url
]
]
end
def application do
[extra_applications: [:logger]]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp description() do
"GuardedStruct macro allows to build Structs that provide you with a number of important options Validation, Sanitizing, Constructor"
end
defp package() do
[
files: ~w(lib .formatter.exs mix.exs LICENSE README*),
licenses: ["Apache-2.0"],
maintainers: ["Shahryar Tavakkoli"],
links: %{
"Mishka" => "https://mishka.tools",
"GitHub" => @source_url,
"Changelog" => "#{@source_url}/blob/master/CHANGELOG.md",
"LiveBook document" => "#{@source_url}/blob/master/guidance/guarded-struct.livemd"
}
]
end
defp deps do
[
# necessary
{:html_sanitize_ex, "~> 1.4.3"},
# document
{:ex_doc, "~> 0.34.2", only: :dev, runtime: false},
# test env
{:email_checker, "~> 0.2.4", optional: true, only: :test},
{:ex_url, "~> 2.0", optional: true, only: :test},
{:ex_phone_number, "~> 0.4.5", optional: true, only: :test},
{:sweet_xml,
github: "kbrw/sweet_xml", branch: "master", override: true, optional: true, only: :test}
]
end
end