-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
119 lines (104 loc) · 2.73 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
107
108
109
110
111
112
113
114
115
116
117
118
119
defmodule Grax.MixProject do
use Mix.Project
@repo_url "https://github.com/rdf-elixir/grax"
@version File.read!("VERSION") |> String.trim()
def project do
[
app: :grax,
version: @version,
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
consolidate_protocols: Mix.env() != :test,
deps: deps(),
aliases: aliases(),
# Dialyzer
dialyzer: dialyzer(),
# Hex
package: package(),
description: description(),
# Docs
name: "Grax",
docs: [
main: "Grax",
source_url: @repo_url,
source_ref: "v#{@version}",
extras: ["CHANGELOG.md"]
],
# ExCoveralls
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
check: :test,
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
]
end
defp description do
"""
A light-weight RDF graph data mapper for Elixir.
"""
end
defp package do
[
maintainers: ["Marcel Otto"],
licenses: ["MIT"],
links: %{
"Homepage" => "https://rdf-elixir.dev",
"GitHub" => @repo_url,
"Changelog" => @repo_url <> "/blob/master/CHANGELOG.md"
},
files: ~w[lib priv mix.exs .formatter.exs VERSION *.md]
]
end
def application do
[
extra_applications: [:logger, :crypto],
mod: {Grax.Application, []}
]
end
defp deps do
[
rdf_ex_dep(:rdf, "~> 2.0"),
{:uniq, "~> 0.6"},
{:yuri_template, "~> 1.1"},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4", only: :dev, runtime: false},
{:ex_doc, "~> 0.34", only: :dev, runtime: false},
{:excoveralls, "~> 0.18", only: :test},
# This dependency is needed for ExCoveralls when OTP < 25
{:castore, "~> 1.0", only: :test},
{:benchee, "~> 1.3", only: :dev}
]
end
defp rdf_ex_dep(dep, version) do
case System.get_env("RDF_EX_PACKAGES_SRC") do
"LOCAL" -> {dep, path: "../#{dep}"}
_ -> {dep, version}
end
end
defp dialyzer do
[
plt_file: {:no_warn, "priv/plts/dialyzer.plt"},
ignore_warnings: ".dialyzer_ignore.exs",
# Error out when an ignore rule is no longer useful so we can remove it
list_unused_filters: true
]
end
defp aliases do
[
check: [
"clean",
"deps.unlock --check-unused",
"compile --all-warnings --warnings-as-errors",
"format --check-formatted",
"test --warnings-as-errors",
"credo"
]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
end