-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
53 lines (45 loc) · 1.47 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
#-------------------------------------------------------------------------------
# Author: Keith Brings
# Copyright (C) 2018 Noizu Labs, Inc. All rights reserved.
#-------------------------------------------------------------------------------
defmodule Noizu.MnesiaVersioning.Mixfile do
use Mix.Project
def project do
[app: :noizu_mnesia_versioning,
version: "0.1.10",
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env),
package: package(),
deps: deps(),
description: "Schema Management Framework for Elixir/Amnesia",
docs: docs()
]
end
defp elixirc_paths(:test), do: ["lib", "test/fixtures"]
defp elixirc_paths(_), do: ["lib"]
defp package do
[
maintainers: ["noizu"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/noizu/MnesiaVersioning"}
]
end
def application do
[ applications: [:logger, :mnesia],
extra_applications: [:amnesia]
]
end
defp deps do
[
{:ex_doc, "~> 0.28.3", only: [:dev, :test], optional: true, runtime: false}, # Documentation Provider
{:markdown, github: "devinus/markdown", only: [:dev], optional: true}, # Markdown processor for ex_doc
{:amnesia, git: "https://github.com/noizu/amnesia.git", ref: "9266002"}, # Mnesia Wrapper
]
end
defp docs do
[
source_url_pattern: "https://github.com/noizu/MnesiaVersioning/blob/master/%{path}#L%{line}",
extras: ["README.md", "markdown/config.md"]
]
end
end