-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
87 lines (79 loc) · 2.04 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
defmodule Versioning.MixProject do
use Mix.Project
@version "0.4.1"
def project do
[
app: :versioning,
version: @version,
elixir: "~> 1.7",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
name: "Versioning",
docs: docs()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp description do
"""
Versioning provides a way for API's to remain backward compatible without the headache.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README*"],
maintainers: ["Nicholas Sweeting"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/nsweeting/versioning"}
]
end
defp docs do
[
main: "Versioning",
source_ref: "v#{@version}",
canonical: "http://hexdocs.pm/versioning",
main: "readme",
extras: [
"README.md",
"guides/Getting Started.md",
"guides/Phoenix Usage.md"
],
source_url: "https://github.com/nsweeting/versioning",
source_url_pattern: "https://github.com/nsweeting/versioning/blob/master/%{path}#L%{line}",
groups_for_modules: [
Adapters: [
Versioning.Adapter,
Versioning.Adapter.Semantic,
Versioning.Adapter.Date
],
Changelogs: [
Versioning.Changelog,
Versioning.Changelog.Formatter,
Versioning.Changelog.Markdown
],
Phoenix: [
Versioning.Controller,
Versioning.Plug,
Versioning.View
]
]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:phoenix, "~> 1.5", optional: true},
{:poison, "~> 3.1", optional: true},
{:ex_doc, "~> 0.23", only: :dev, runtime: false}
]
end
end