-
Notifications
You must be signed in to change notification settings - Fork 27
/
mix.exs
55 lines (49 loc) · 1.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
defmodule ExSync.Mixfile do
use Mix.Project
@source_url "https://github.com/falood/exsync"
@version "0.4.1"
def project do
[
app: :exsync,
version: @version,
elixir: "~> 1.11",
elixirc_paths: ["lib", "web"],
deps: deps(),
description: "Yet another Elixir reloader.",
source_url: @source_url,
homepage_url: @source_url,
package: package(),
docs: docs()
]
end
def application do
[
mod: {ExSync.Application, []},
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, "~> 0.14", only: :docs},
{:file_system, "~> 1.0 or ~> 0.2"}
]
end
defp package do
%{
maintainers: ["Xiangrong Hao", "Jason Axelson"],
licenses: ["BSD-3-Clause"],
links: %{"Github" => "https://github.com/falood/exsync"}
}
end
defp docs do
[
extras: [
"README.md": [],
"CHANGELOG.md": [],
LICENSE: [title: "License"]
],
main: "readme",
source_ref: "v#{@version}"
]
end
end