forked from edgurgel/httpoison
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
39 lines (34 loc) · 886 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
defmodule HTTPoison.Mixfile do
use Mix.Project
@description """
Yet Another HTTP client for Elixir powered by hackney
"""
def project do
[ app: :httpoison,
version: "0.9.2",
elixir: "~> 1.2",
name: "HTTPoison",
description: @description,
package: package(),
deps: deps(),
source_url: "https://github.com/edgurgel/httpoison" ]
end
def application do
[applications: [:hackney]]
end
defp deps do
[
{:hackney, "~> 1.6.0"},
{:exjsx, "~> 3.1", only: :test},
{:httparrot, "~> 0.4", only: :test},
{:meck, "~> 0.8.2", only: :test},
{:earmark, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.13", only: :dev},
]
end
defp package do
[ maintainers: ["Eduardo Gurgel Pinho"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/edgurgel/httpoison"} ]
end
end