-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
42 lines (38 loc) · 853 Bytes
/
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
defmodule OAuth2Cli.Mixfile do
use Mix.Project
@description """
Simple OAuth2 client
"""
def project do
[
app: :oauth2cli,
version: "0.0.4",
elixir: "~> 1.0",
deps: deps,
description: @description,
package: [
contributors: ["Garrett Amini", "Sonny Scroggin", "Nate West", "Jamie Winsor"],
licenses: ["MIT"],
links: %{"Github": "https://github.com/mgamini/oauth2cli-elixir"}
]
]
end
def application do
[
mod: { OAuth2Cli, [] },
applications: [:httpoison],
registered: [
OAuth2Cli.Manager
]
]
end
defp deps do
[
{:hackney, "~> 1.0"},
{:httpoison, "~> 0.6.0"},
{:poison, "~> 1.3"},
{:cowboy, "~> 1.0.0", optional: true},
{:plug, "~> 0.9.0"},
]
end
end