forked from ueberauth/guardian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
43 lines (38 loc) · 1.02 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
defmodule Guardian.Mixfile do
use Mix.Project
@version "0.6.2"
def project do
[
app: :guardian,
version: @version,
elixir: "~> 1.0",
package: package,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
contributors: ["Daniel Neighman"],
description: "Elixir Authentication framework",
homepage_url: "https://github.com/hassox/guardian",
docs: [source_ref: "v#{@version}", main: "overview"],
deps: deps
]
end
def application do
[applications: [:logger, :joken, :poison]]
end
defp deps do
[{:joken, "~> 0.15.0"},
{:poison, "~> 1.5"},
{:plug, "~> 1.0", only: :test},
{:ex_doc, "~> 0.8", only: :docs},
{:earmark, ">= 0.0.0", only: :docs},
{:uuid, ">=1.0.1"}]
end
defp package do
[
contributors: ["Daniel Neighman"],
licenses: ["MIT"],
links: %{github: "https://github.com/hassox/guardian"},
files: ~w(lib) ++ ~w(CHANGELOG.md LICENSE mix.exs README.md)
]
end
end