-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
44 lines (37 loc) · 866 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
43
44
defmodule Arc.Storage.Manta.Mixfile do
use Mix.Project
@version "0.0.3"
def project do
[app: :arc_manta,
version: @version,
elixir: "~> 1.0",
deps: deps,
# Hex
description: description,
package: package]
end
defp description do
"""
Provides Joyent Manta storage backend for Arc.
"""
end
defp package do
[maintainers: ["Dan Connor"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/onyxrev/arc_manta"},
files: ~w(mix.exs README.md lib)]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:arc, "~> 0.6.0"},
{:poison, "~> 1.2 or ~> 2.0" },
{:calendar, "~> 0.14.2"},
{:httpoison, "~> 0.7" },
{:mock, "~> 0.1.1", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
end