-
Notifications
You must be signed in to change notification settings - Fork 8
/
mix.exs
78 lines (70 loc) · 1.88 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
defmodule Mutex.Mixfile do
use Mix.Project
@source_url "https://github.com/lud/mutex"
@version "3.0.0"
def project do
[
app: :mutex,
version: @version,
elixir: "~> 1.15",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
name: "Mutex",
package: package(),
versioning: versioning(),
elixirc_paths: elixirc_paths(Mix.env())
]
end
def application do
# Specify extra applications you'll use from Erlang/Elixir
[extra_applications: [:logger]]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:dialyxir, "~> 1.2", only: :dev, runtime: false},
{:credo, "~> 1.7", only: :dev, runtime: false}
]
end
defp package() do
[
description:
"This package implements a simple mutex as a GenServer. " <>
"It allows to lock keys and handles locking multiple keys " <>
"without deadlocks.",
licenses: ["MIT"],
maintainers: ["Ludovic Demblans <[email protected]>"],
links: %{"GitHub" => @source_url}
]
end
defp docs do
[
extras: [
"README.md": [title: "Overview"],
"LICENSE.md": [title: "License"]
],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}",
formatters: ["html"]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp versioning do
[
annotate: true,
before_commit: [
fn vsn ->
case System.cmd("git", ["cliff", "--tag", vsn, "-o", "CHANGELOG.md"], stderr_to_stdout: true) do
{_, 0} -> IO.puts("Updated CHANGELOG.md with #{vsn}")
{out, _} -> {:error, "Could not update CHANGELOG.md:\n\n #{out}"}
end
end,
add: "CHANGELOG.md"
]
]
end
end