-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmix.exs
More file actions
39 lines (34 loc) · 712 Bytes
/
mix.exs
File metadata and controls
39 lines (34 loc) · 712 Bytes
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 DockerApi.Mixfile do
use Mix.Project
def project do
[app: :docker_api,
version: "0.5.0",
elixir: "~> 1.0",
description: description(),
package: package(),
deps: deps()]
end
def application do
[applications: [:logger, :httpoison]]
end
def description do
"Docker API for Elixir"
end
def package do
[
contributors: ["Bradley Smith"],
licenses: ["The MIT License"],
links: %{
"GitHub" => "https://github.com/bradleyd/docker_api"
}
]
end
defp deps do
[
{:ibrowse, "~> 4.2"},
{:httpoison, "~> 0.11.0"},
{:mock, "~> 0.1", only: :test},
{:poison, "~> 2.2.0"}
]
end
end