forked from smpallen99/coherence
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
61 lines (55 loc) · 1.77 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
defmodule Coherence.Mixfile do
use Mix.Project
@version "0.3.1"
def project do
[ app: :coherence,
version: @version,
elixir: "~> 1.3",
elixirc_paths: elixirc_paths(Mix.env),
compilers: [:phoenix, :gettext] ++ Mix.compilers,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
docs: [extras: ["README.md"], main: "Coherence"],
deps: deps(),
package: package(),
dialyzer: [plt_add_apps: [:mix]],
name: "Coherence",
description: """
A full featured, configurable authentication and user management system for Phoenix.
"""
]
end
# Configuration for the OTP application
def application do
[mod: {Coherence, []},
applications: [:logger, :comeonin, :ecto, :uuid, :phoenix_swoosh,
:timex_ecto, :tzdata, :plug, :phoenix, :phoenix_html]]
end
defp elixirc_paths(:test), do: ["lib", "web", "test/support"]
defp elixirc_paths(_), do: ["lib", "web"]
defp deps do
[
{:ecto, "~> 2.0"},
{:comeonin, "~> 2.4"},
{:phoenix, "~> 1.2"},
{:phoenix_html, "~> 2.6"},
{:gettext, "~> 0.11"},
{:uuid, "~> 1.0"},
{:phoenix_swoosh, "~> 0.1.3"},
{:timex, "~> 3.0"},
{:timex_ecto, "~> 3.0"},
{:floki, "~> 0.8", only: :test},
{:ex_doc, "== 0.11.5", only: :dev},
{:earmark, "== 0.2.1", only: :dev, override: true},
{:postgrex, ">= 0.0.0", only: :test},
{:dialyxir, "~> 0.4", only: [:dev], runtime: false},
{:credo, "~> 0.5", only: [:dev, :test]}
]
end
defp package do
[ maintainers: ["Stephen Pallen"],
licenses: ["MIT"],
links: %{ "Github" => "https://github.com/smpallen99/coherence" },
files: ~w(lib priv web README.md mix.exs LICENSE)]
end
end